
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Rubik', sans-serif;
    background-color: #ffffff;
}

.main-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
}

.login-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.login-form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-image-container {
    flex: 1;
    background-image: url('../images/login-register.jpg');
    background-size: cover;
    background-position: center;
}

.auth-box {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 80%;
    max-height: 100px;
    object-fit: contain;
}

hr {
    border-color: #e0e0e0;
}

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

.control-label {
    color: #306BA9;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px 10px 40px;
    height: 42px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #306BA9;
    box-shadow: 0 0 8px rgba(48, 107, 169, 0.3);
}


.has-feedback {
    position: relative;
}

.form-control-feedback {
    position: absolute;
    top: 38px;
    left: 15px;
    color: #8F8F8F;
}

#show_password {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    color: #8F8F8F;
}

#to-recover {
    color: #8F8F8F;
    font-weight: 500;
    text-decoration: none;
}
#to-recover:hover {
    color: #306BA9;
}


.btn-pretty {
    background-color: #E16D2B;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-pretty:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #d35400;
}

.symbol.required {
    color: #E16D2B;
}

#recoverform .btn-pretty {
    background-color: #306BA9;
}

#recoverform .btn-pretty:hover {
    background-color: #255a8a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-image-container {
        display: none;
    }

    .login-form-container {
        flex: 1 1 100%;
    }
}
