﻿.logout-form {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;

    .logout-button {
        min-width: 10rem;
    }
}

.login-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;

    .login-button {
        min-width: 10rem;
    }
}

.logged-out-page {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;

    .logged-out-card {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-card);

        .logged-out-title {
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .logged-out-description {
            opacity: 0.85;
            margin-bottom: 0;
        }

        .back-to-application-btn {
            margin-top: 2rem;
        }
    }
}
