* {
    --mieet-puls-logo-color: #b7dac6;
    --text-color-base: #5c6d63;
    --text-color-light: #89a495;
    --text-color-dark: #2e3732;
}

html,
body {
    margin: 0;

    height: 100vh;
    width: 100%;
    overflow-y: scroll;

    color: var(--text-color-base);

    background: linear-gradient(
        291deg,
        #f4ebff -3.27%,
        #e5faf3 32.46%,
        #e9fff7 47.83%,
        #ebfbf5 98.89%
    );
    background-attachment: fixed;
    background-repeat: no-repeat;
}

main {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    max-width: 500px;
    margin: auto;
    padding: 4rem 0;
    background-color: #fffd;
}

main > div {
    padding: 1rem;
}

h1,
h2 {
    font-size: 20px;
}

a {
    text-decoration: none;
}

.info_box {
    padding: 0.25rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #333;
    display: inline-block;
    cursor: pointer;
}
.info_box:hover {
    opacity: 0.7;
}
.flex_group {
    display: flex;
    align-items: center;
}

.green_btn {
    padding: 0.25rem 0.5rem;
    background-color: green;
    color: white;
    border-radius: 8px;
    border: 1px solid #333;
}

.new_student_name {
    color: green;
    font-weight: bold;
    letter-spacing: 1px;
}

.checkbox_group {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #00abee;
}

.payment_info {
    font-size: 12px;
}
