/* StyleSheet/login.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f172a; /* Deep Navy Brand Color */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 20px;
}

/* Background Decorative Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}
.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 210, 255, 0.15);
    top: -50px;
    left: -50px;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 26, 52, 0.15);
    bottom: -100px;
    right: -50px;
}

/* Glassmorphism Main Wrapper */
.auth-wrapper {
    display: flex;
    width: 100%;
    max-width: 950px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

/* Left Side: Welcome Content */
.welcome-section {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(58, 123, 213, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    color: #ffffff;
}

.welcome-section h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-top: 10px;
    letter-spacing: 1px;
    justify-content: center;
}

.welcome-section p {
    font-size: 1.9rem;
    opacity: 0.9;
    margin-bottom: 30px;
    justify-content: center;
}

.welcome-section .tagline {
    color: #00ffcc; /* Neon Cyan */
    font-weight: 600;
    font-size: 0.95rem;
    border-left: 5px solid #00ffcc;
    padding-left: 15px;
}

/* Right Side: Login Card */
.login-card {
    flex: 1;
    padding: 50px;
    background: rgba(15, 23, 42, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.brand-status {
    color: #00ffcc;
    font-size: 0.85rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form Inputs */
.input-box {
    position: relative;
    width: 100%;
    margin-bottom: 35px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.input-box input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0 35px;
    font-size: 1rem;
}

.input-box i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.1rem;
}

.input-box label {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    transition: 0.4s;
    pointer-events: none;
}

/* Input Animation Logic */
.input-box input:focus~label,
.input-box input:valid~label {
    top: -10px;
    font-size: 0.85rem;
    color: #00ffcc;
}

.input-box input:focus,
.input-box input:valid {
    border-bottom: 2px solid #00ffcc;
}

/* Button Gradient */
.login-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
    margin-top: 10px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 210, 255, 0.4);
}

.form-footer {
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

.form-footer a {
    color: #00ffcc;
    text-decoration: none;
    font-weight: 700;
}

/* RESPONSIVE DESIGN (Mobile Friendly) */
@media (max-width: 850px) {
    .auth-wrapper {
        flex-direction: column;
        max-width: 450px;
    }
    .welcome-section {
        padding: 40px 30px;
        text-align: center;
    }
    .welcome-section h2 {
        font-size: 2.2rem;
    }
    .welcome-section .tagline {
        border-left: none;
        border-top: 2px solid #00ffcc;
        padding-top: 10px;
        padding-left: 0;
    }
    .login-card {
        padding: 40px 30px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}