#page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 1rem;
}


#forgot_password_section {
    display: flex;
    flex-direction: row-reverse
}

.btn-master-gradient {
    background: linear-gradient(to right, #1F1C18 0%, #8E0E00 100%);
    color: #fff; /* Ensure text color contrasts with the gradient */
    border: none; /* Remove border if any */
    /*padding: 0.5rem 1rem; !* Standard padding *!*/
    /*border-radius: 0.375rem; !* Keep the default Bootstrap button radius *!*/
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-master-gradient:hover,
.btn-master-gradient:focus {
    background: linear-gradient(to left, #8E0E00 0%, #1F1C18 100%);
    box-shadow: 0 0 5px rgba(142, 14, 0, 0.5); /* Add hover/focus shadow effect */
    outline: none; /* Remove default focus outline */
    color: white;
}