
* {
            box-sizing: border-box;
        }

.login-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(10px);
}

.login-title {
    color: #2c3e50;
    font-size: 2.2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1em;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1em;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
    color: #2c3e50;
}

.form-input:focus {
    border-color: #e67e22;
    background: white;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-input::placeholder {
    color: #95a5a6;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #7f8c8d;
    font-size: 1.2em;
    padding: 5px;
}

.password-toggle:hover {
    color: #2c3e50;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e67e22;
}

.remember-me label {
    color: #7f8c8d;
    cursor: pointer;
}

.forgot-password {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #c0392b;
}

.login-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.login-tabs {
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 20px;
        }

        .tab-button-login {
            background: none;
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            color: #6c757d;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .tab-button-login.active {
            color: #0d6efd;
            border-bottom-color: #0d6efd;
        }

        .tab-button-login:hover {
            color: #0d6efd;
        }

        .tab-content-login {
            display: none;
        }

        .tab-content-login.active {
            display: block;
        }



@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 1.8em;
    }
}
