.left-section,
.right-section {
    flex: 1;
    padding: 20px;
}

.right-section {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../img/background 3.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.left-section {
    flex: 1;
    padding: 30px;
    background-color: rgb(251, 250, 250);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.left-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.left-section input {
    max-width: 400px;
    margin-bottom: 15px;
    padding: 10px 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: all 0.2s ease;
}

.left-section input:focus {
    border-color: #a0271b;
    box-shadow: 0 0 6px rgba(160, 39, 27, 0.5);
}

.left-section .btn {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 1em;
    font-weight: bold;
    background-color: #00b0e0;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.left-section .btn:hover {
    background-color: #1d71b8;
}

.left-section a {
    font-size: 0.9em;
    color: #00b0e0;
    text-decoration: none;
}

.left-section a:hover {
    text-decoration: underline;
}

.left-section .form-group {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form input {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1.3em;
}

#login-form-password-errors p{
    font-size: 1em !important;
}

.form-control-feedback {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-0%);
    color: #666;
    pointer-events: none;
}

.form-check{
    margin-left: 5px;
}

.form-check-label{
    margin-top: 2px;
}

.form-check-input:checked {
    background-color: #727829 !important;
    border-color: #bccc00 !important;
}

.form-check-input:checked:focus {
    box-shadow: 0 0 8px 3px rgb(188, 204, 0);
}

.form-check-input:checked:hover {
    box-shadow: 0 0 6px 2px rgb(188, 204, 0);
}

.form-check-input:checked::before {
    background-color: transparent;
    border-color: rgba(160, 39, 27, 0.3) !important;
}


.links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 1.2em;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay img {
    max-width: 100px;
    height: auto;
}

.popup-content.loading-state {
    background-color: rgb(251, 250, 250);
}

.popup-content.loading-state .right-section {
    background: rgb(251, 250, 250) none;
}


