﻿body {
    height: auto
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.footer {
    text-align: center;
}

.wrapper {
    max-width: 350px;
    border-radius: 0;
    margin: 25px auto;
    padding: 20px 50px;
    border: 1px solid #ddd;
}

.title {
    color: #6f7788;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #6f7788;
    padding-bottom: 8px;
}

.sub-text {
    margin: 5px 0 0;
    font-size: 13px;
}
.select-option {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
    .select-option a {
        border: 2px solid #90c376;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100px;
        margin: 0 10px;
        height: 90px;
        border-radius: 4px;
        color: #000 !important;
       
    }
        .select-option a span {
            font-size: 38px;
        }
            .select-option a span.text {
                font-size: 13px;
                font-weight: 500;
                margin-top: 5px;
                color: #666;
            }
            .select-option a.active, .select-option a:hover {
                background: rgb(200,227,193);
                background: linear-gradient(180deg, rgba(200,227,193,1) 0%, rgba(156,210,126,1) 100%);
            }