@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

header{
    width: 100%;
    height: 100px;
    background-color: rgb(97, 134, 190);
}

header h1{
    font-size: 85px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

main {
    width: 940px;
    margin: 0 auto;
    margin-left: 500px;
}

form {
    margin: 40px 0;
    line-height: 1.5;
}

form label, form legend, p, select, option {
    display:block;
    font-size: 20px;
    margin: 0 0 10px;
}

fieldset{
    margin: 20px;
}

select{
    width: 150px;
}

button {
    appearance: none;
    backface-visibility: hidden;
    background-color: #2f80ed;
    border-radius: 10px;
    border: none;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    height: 50px;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 14px 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
    align-items: center;
    
}

button:hover {
    background-color: #1366d6;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

button:hover {
    background-color: #1366d6;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: .5;
    transition-duration: .35s;
}

button:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}

button:active:after {
    opacity: 1;
}

.home{
    font-size: 30px;
}

.input-padrao {
    display: block;
    margin: 0 0 20px;
    padding: 10px 25px;
    width: 50%;
}

.checkbox {
    margin: 20px 0;
}

.enviar {
    width:40%;
    padding: 15px 0;
    background: rgb(21, 98, 150);
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    transition: 1s all;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: 80px;
}

.enviar:hover {
    background: rgb(2, 63, 121);
    transform: scale(1.2);
}
#cadastro{
    padding-top: 20px;
}
@media (max-width: 840px) {
    header h1 {
        font-size: 60px;
    }

    main {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .input-padrao {
        width: 100%;
    }

    .enviar {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 40px;
    }

    form label, form legend, p, select, option {
        font-size: 18px;
    }

    button {
        font-size: 14px;
        padding: 12px 25px;
    }

    .enviar {
        font-size: 16px;
        padding: 12px 0;
    }
    .input-padrao {
        width: 80%;
    }
    #cadastro{
        padding-left: 10px;
    }
    
}