/* Login Page CSS */
body {
    background: #f4f6f8;
    color: #333;
    font-family: 'Montserrat', 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.landing-bg {
    background: url('../../img/background_login.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-content {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.login-container {
    max-width: 450px;
    margin: 0 auto;
    width: 90%;
}

.logo-big img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

#login-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border: none;
    margin-top: 20px;
}

#login-panel .popcorn1 {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    right: -30px;
    transform: rotate(68deg);
    z-index: 10;
}

#login-panel .popcorn2 {
    width: 80px;
    height: 80px;
    position: absolute;
    left: -45px;
    bottom: -30px;
    transform: rotate(120deg);
    z-index: 10;
}

.landing-content h3 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.landing-content p.subtitle {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.form-control {
    border-radius: 4px;
    padding: 10px 15px;
    height: auto;
    border: 1px solid #ddd;
    box-shadow: none;
}

.form-control:focus {
    border-color: #FFC107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn-primary {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 4px;
    width: 100%;
    transition: all 0.3s;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e0a800;
    border-color: #d39e00;
}

.form-check-input:checked {
    background-color: #FFC107;
    border-color: #FFC107;
}

.nav-tabs {
    border-bottom: none;
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    border: none;
    color: #777;
    background: transparent;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link.active {
    color: #333;
    border-bottom-color: #FFC107;
    font-weight: 600;
}

.password-view {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}