@import '../../_common/_modules/css/_reset.css';
@import '../../_common/_modules/css/_root-colors.css';
@import '../../_common/_modules/css/_globe.css';

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: var(--background-color);
    font-family: 'Inter', sans-serif;

    main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
        max-width: 800px;
        min-width: 300px;
        width: 100%;
        border-radius: 0.25rem;
        padding: 1rem;
        background-color: #fff;
        gap: 1rem;

        h1 {
            color: var(--title-color);
            text-align: center;
        }

        form {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            min-width: 250px;
            margin: 1rem 0;

            input[type="email"] {
                height: 2rem;
                text-align: center;
                width: 100%;
            }

            select {
                height: 2rem;
                width: 100%;
                text-align: center;
            }

            fieldset {
                border: none;
            }

            button[type="submit"] {
                background-color: var(--green-color);
                color: #fff;
                padding: 0.5rem;
                border-radius: 0.25rem;
                border: none;
                font-weight: bold;
                font-size: 1.1rem;
                cursor: pointer;
            }
        }

        div[id="confirm_success"] {
            color: var(--green-color);
            font-weight: bold;
            text-align: center;
            font-size: 1.1rem;
        }

        div[class~="hidden"] {
            display: none;
        }
    }
}