@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #334155;
    position: relative;
    overflow: hidden;
}

/* Background circles */
body::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
body::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.login-container {
    display: flex;
    width: 900px;
    max-width: 95%;
    height: 550px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(148,163,184,0.2);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Left side (Form) */
.login-left {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.login-left p {
    color: #64748b;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #334155;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    transition: color 0.3s ease;
    pointer-events: none;
}

.input-icon-wrapper:focus-within .input-icon {
    color: #3b82f6;
}

.btn-login {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.8rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

.btn-login:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 6px 12px -2px rgba(37, 99, 235, 0.3);
}

.login-footer {
    margin-top: auto;
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    padding-top: 40px;
}

.login-footer a {
    color: #3b82f6;
    text-decoration: none;
    display: block;
    margin-top: 5px;
    font-weight: 500;
}
.login-footer a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Right side (Logo display) */
.login-right {
    flex: 1;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(29, 78, 216, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(226, 232, 240, 0.6);
}

.logo-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(148, 163, 184, 0.15);
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-card img {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.logo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.logo-card p {
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
        margin: 20px;
    }
    .login-right {
        display: none;
    }
    .login-left {
        padding: 40px 30px;
    }
}
