.login {

    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.login-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-logo {
    font-size: 32px;
    font-weight: 700;
    color: #2e4053;
    margin-bottom: 15px;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 8px;
    display: block;
}

.form-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #212121;
    outline: none;
    transition: all 0.3s;
    font-family: "DM Sans", sans-serif;
}

.form-input:focus {
    border-color: #2e4053;
    box-shadow: 0 0 0 3px rgba(46, 64, 83, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #2e4053;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.remember-me input {
    width: 16px;
    height: 16px;
    accent-color: #2e4053;
    cursor: pointer;
}

.forgot-password {
    color: #2e4053;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.forgot-password:hover {
    opacity: 0.8;
}

.submit-btn {
    width: 100%;
    background: #2e4053;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #1a2733;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 64, 83, 0.3);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.form-divider span {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #212121;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "DM Sans", sans-serif;
}

.social-btn:hover {
    border-color: #2e4053;
    background: #f8f9fa;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.form-footer a {
    color: #2e4053;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.form-footer a:hover {
    opacity: 0.8;
}

@media (max-width: 576px) {
    .login-container {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 20px;
    }

    .form-options {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .social-login {
        flex-direction: column;
    }
}