/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
} */

.container-login {
    display: flex;
    min-height: 100vh;
}

.container-login .left-panel {
    flex: 1.5;
    background: linear-gradient(135deg, #2a2a2a 0%, #131313 100%);
    padding: 40px;    
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    background: url('../img/pannel.jpg') no-repeat center;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
}

.container-login .left-panel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(148.25deg, #961b1b 13%, #0b2155 89.85%);
    transform: translate(-50%, -50%) rotate(-45deg);
    pointer-events: none;
    z-index: 100;
    opacity: .5;
    z-index: -1;
}

.left-panel .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.left-panel .logo img {
    width: 150px;
}

.left-panel .logo h2 {
    font-size: 2.4em;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 1px 1px #000;
    color: #d5d5d5;
}

.left-panel .description {
    margin-bottom: 30px;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 400px;
}

.left-panel .get-started {
    background-color: rgb(50, 169, 13);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
    z-index: 1000;
}

.left-panel .get-started:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.container-login .right-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #393939;
    color: white;
}

.container-login .login-form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.container-login h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.container-login .subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.container-login .form-group {
    position: relative;
    margin-bottom: 15px;
    
}
.container-login .form-group span{
    position: absolute;
    color: #ffffff;
    top: 0px;
    right: -5px;
    width: 55px;
    height: 50.5px;
    background-image: linear-gradient(148.25deg, #8a8a8a 3%, #3d5295 89.85%) !important;
    padding: 15px;
    padding-left: 20px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.right-panel [type="text"],
.right-panel [type="password"] {
    width: 100%;
    padding:  12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-size: 1.2em;
    transition: border-color 0.3s ease;
    letter-spacing: 1px;
    color: #000;
}

.right-panel [type="text"]:focus,
.right-panel [type="password"]:focus {
    border-color: #2b4baa;
    outline: none;
}

.right-panel .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.right-panel .remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.right-panel .forgot-password {
    color: #2b4baa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.right-panel.forgot-password:hover {
    color: #1a2d66;
}

.right-panel .login-button {
    width: 100%;
    padding: 15px;
    background-image: linear-gradient(148.25deg, #80272d 3%, #3d5295 89.85%) !important;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 1px;
}

.right-panel .login-button:hover {
    background-color: #480c0c;
    transform: translateY(-2px);
}

.right-panel .right-panel .register-link {
    text-align: center;
    color: #666;
}

.right-panel .register-link a {
    color: #2b4baa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.right-panel .register-link a:hover {
    color: #1a2d66;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container-login {
        flex-direction: column;
    }

    .container-login .left-panel {
        min-height: 300px;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .left-panel .description {
        margin: 20px auto;
    }

    .container-login .right-panel {
        padding: 30px 20px;
    }

    .right-panel .login-form {
        padding: 0;
    }

    .container-login h1 {
        font-size: 2rem;
        text-align: center;
    }

    .container-login .subtitle {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container-login .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .right-panel .forgot-password {
        align-self: flex-end;
    }

    .right-panel [type="email"],
    .right-panel [type="password"] {
        padding: 12px;
    }

    .right-panel .login-button {
        padding: 12px;
    }
}

