/* Phone and Tablet */
@media screen and (max-width: 1080px) {
    
    form h1 {
        font-size: 25px;
    }
    
    form h2 {
        font-size: 16px;
    }
    
    form h3 {
        font-size: 15px;
    }
    
}

/* Laptop and Desktop */
@media screen and (min-width: 1081px) {

    form {
        background-color: #18181d;
        padding: 30px 30px 50px 30px;
        margin: 70px auto;
        border-radius: 6px;
    }
    
    form h1 {
        font-size: 30px;
    }
    
    form h2 {
        font-size: 20px;
    }
    
    form h3 {
        font-size: 15px;
    }
}