/* Styles "white-reset" */
.white-reset {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
}

.white-reset .logo_reset {
    display: block;
    width: 150px;
    height: 50px;
    margin: 0 auto 20px;
    background-image: url('../images/template/logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.white-reset label {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

.white-reset input[type="password"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #fafafa;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.white-reset input[type="password"]:focus {
    border-color: #03c4eb;
    outline: none;
}

.white-reset button {
    background-color: #03c4eb;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.white-reset button:hover {
    background-color: #0284a8;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col-lg-12 {
    width: 100%;
}

/* Styles "reset_password" */
#reset_password {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    font-family: Arial, sans-serif;
}

#reset_password .input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#reset_password .input-group label {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    text-align: left;
    margin-bottom: 5px;
}

#reset_password .form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #fafafa;
    transition: border-color 0.3s;
}

#reset_password .form-control:focus {
    border-color: #03c4eb;
    outline: none;
}

#reset_password #reset-password-button-request {
    background-color: #03c4eb;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 20px;
}

#reset_password #reset-password-button-request:hover {
    background-color: #0284a8;
}

#reset_password .alert {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

#reset_password .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#reset_password .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}