﻿.signup-bg {
    background-image: url('../Images/garage.jpg');
    background-size: cover;
    min-height: 100vh;
}

.signup-container{
    opacity: 95%;
    border-radius: 0.3rem;
}

.grid-column-span-2 {
    grid-column: span 2;
}

.matForm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.terms {
    height: auto;
    color: #1F2132;
    font-size: 0.938rem;
}

.terms.p {
    margin-right: 10%;
    margin-left: 15%;
    max-width: 80%;
}

@media (max-width: 700px) {

    .matForm {
        grid-template-columns: repeat(1, 1fr);
    }

    .terms {
        margin-top: 0;
    }
}
