#main-app {
    max-width: 1400px;
    min-height: calc(100dvh - 173px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
    background-color: #fff;
    border-radius: .5rem;
}

.card-header img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
}

.btn-toggle-password {
    height: 30.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-btn-primary {
    display: block;
    width: 100% !important;
    color: #fff !important;
    background-color: #007bff !important;
    font-weight: 400 !important;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid #007bff !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5;
    border-radius: 0.25rem;
    background-image: none !important;
    margin: 0 !important;
    text-decoration: none !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    &:hover {
        color: #fff;
        background-color: #0069d9 !important;
        border-color: #0062cc !important;;
    }

    &:focus {
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    }
}