form{
    width:50%;
    
    margin: 30px 0 30px 60px;
    height: 350px;
}
fieldset{
    padding: 30px;
}
.background{
    border-radius: 15px;
    border: 2px solid rgb(3, 74, 166);
   
    box-shadow: -6px 6px rgb(3, 74, 166);
}
input{
    width: 100%;
    border: 1.5px solid rgb(242, 95, 41);
    height: 20px;
    margin-top: 5px;
    border-radius: 5px;
}
label{
    font-family: "lexend zetta", sans-serif;
    font-weight: 500;
}
.submit{
    width: auto;
    height: auto;
    padding: 3px;
    margin-top: 10px;
    font-family: "lexend zetta", sans-serif;
    font-weight: 500;
    background-color: white;
    border: 2px solid rgb(242, 95, 41);
    border-radius: 5px;
    box-shadow: -3px 3px rgb(242, 95, 41);
    color: rgb(3, 74, 166);
}
p.cap{
    font-size: 12px;
    margin-top: 20px;
    padding: 0;
    width: 100%;
}
p a:hover{
    text-shadow: 1px 1px rgb(172, 67, 28);
}

.submit:hover{
color: rgb(242, 95, 41)
}  

@media (max-width: 980px){
    form{
        display: flex;
        width: 80%;
        justify-content: center;
        min-height: 380px;
    }
    
}
@media (max-width: 470px){
    form{
        display: flex;
        width: 80%;
        justify-content: center;
        min-height: 380px;
        margin-left: 30px;
    }
    
}