:root{
    --grey-: #a89aa2;
    --font-: #fff
}

main{
    width: 100%;
}

main > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    padding: 100px 20px 70px 20px;
}

main > div h3 {
    font-weight: 500;
    color: #000;
    font-size: 1.5rem;
}

main > div div{
    width: 100%;
}

main > div div input{
    height: 50px;
    width: 100%;
    border: 1px solid #00000045;
    border-radius: 5px;
    color: #000;
    padding-left: 20px;
    font-weight: 400;
    font-family: 'Catamaran', sans-serif;
    font-size: 1rem;
}

main > div div select{
    height: 50px;
    width: 100%;
    border: 1px solid #00000045;
    border-radius: 5px;
    color: #000;
    padding-left: 20px;
    font-weight: 400;
    font-family: 'Catamaran', sans-serif;
    font-size: 1rem;
}

main > div div option{
    height: 50px;
    width: 100%;
    border: 1px solid #00000045;
    border-radius: 5px;
    color: #000;
    padding-left: 20px;
    font-weight: 400;
    font-family: 'Catamaran', sans-serif;
    font-size: 1rem;
}

main > div div label{
    color: #000;
    font-size: 1.2rem;
}

main > div button{
    border: none;
    padding: 10px 30px;
    background-color: #000;
    margin-top: 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.err{
    padding: 5px auto;
    color: rgb(228, 56, 56);
    text-align: center;
}

.succes{
    color: rgb(0, 210, 140);
    text-align: center;
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width:30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


footer{
    width: 100%;
    background-color: var(--grey-) ;
    padding: 100px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    
}



footer > div{
    display: flex;
    flex-direction: column;
    
}


@media screen and (min-width: 900px){

    main{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    main div{
        max-width: 450px;
    }

}