body {
    min-width: 350px;
    margin: 0;

    display: block;
}

.SignUp {
    display: grid;
    grid-template-rows: 64px 1fr;
    align-items: center;
}

.site-logo {
    display: flex;
    gap: 8px;

    align-items: center;
    justify-content: center;

    height: 28px;
}

.site-logo h4 {
    font-size: clamp(var(--font-mob-size-h5), 6vw, var(--font-mob-size-h3));
}

.site-logo img {
    height: 28px;
}

.SignUp_Center {
    max-width: 358px;
    margin: 2rem 16px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-self: center;
}

.two_buttons {
    margin: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button {
    display: grid;
    align-items: center;
    border-radius: 4px;
}

.button:hover {
    cursor: pointer;
}

.button a {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--text-color-one);
    text-decoration: none;
    text-align: center;
}

.btn_account {
    background-image: var(--background-gradient);
    color: var(--text-color-one);
}

.two_buttons .btn_sign {
    border-radius: 4px;
    border: 1px solid;
    border-image: var(--background-gradient) 1;
    background-color: var(--secondary-color);
    color: white;
}

.div_texts {
    display: flex;
    flex-flow: column nowrap;

    flex-grow: 1;
    flex-shrink: 1;

    text-align: center;
    background-color: var(--secondary-color);
    padding: 24px 24px 20px 24px;
    border-radius: 10px;
}

.div_texts img {
    height: 30px;
    margin-bottom: 14px;
}

.div_texts h6 {
    margin-bottom: 10px;
}

@media screen and (min-width: 450px) {
    .SignUp {
        display: grid;
        grid-template-rows: 64px calc(100vh - 64px);
    }
    
    .site-logo {
        margin-top: 32px;
        margin-left: 40px;
        justify-content: left;
    }

    .SignUp_Center {
        max-width: 450px;
    }

    .div_texts {
        padding: 24px 64px 20px 64px;
    }

    .two_buttons {
        margin: 32px 0 0 0;
        flex-direction: row;
    }

    .button {
        margin: 0;
        width: 100%;
    }
}