.page{
    display: flex;
    min-height: calc(100vh - 90px);
    justify-content: center;
    box-sizing: border-box;
    padding: 35px;
    background-color: #f7f7f8;
}

.signup-select-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5%;
    height: fit-content;
    width: 100%;
    max-width: 900px;
}

.signup-select-container .column{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 275px;
    padding: 35px;
    border-radius: 7px;
    box-shadow: 0px 0px 12px -3px rgba(0,0,0,0.1);
}

.sign-up-type{
    color: rgb(0 0 0 / 65%);
    font-size: 3em;
    margin-bottom: 30px;
}

.column img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain; /* or cover depending on your goal */
    display: block;
}


.signup-button{
    width: -webkit-fill-available;
}

.description{
    margin: 15px 0;
    width: 100%;
    font-size: 1.2em;
}


@media (max-width: 670px){
    .signup-select-container{
        flex-direction: column;
        gap: 50px;
    }

    .column{
        width: 85%;
    }

    .sign-up-type{
       font-size: 2em;
    }
}

@media (max-width: 275px ) and (min-width: 669px){
    .signup-select-container{
        flex-direction: column;
        gap: 50px;
    }

    .column{
        width: 90% !important;
        min-width: 0;
    }


}