.upload-doc{
    margin-bottom: 20px;
}

.upload-doc-descrp{
    margin: 0 auto;
}

.upload-doc-descrp p span{
    font-family: 'Dancing Script', cursive; /* Elegant cursive font */
    color: #0050B5;
}

.form-upload input[type="submit"]{
    margin-top: 10px;
}

.upload-doc h1{
    font-family: 'Dancing Script', cursive; /* Elegant cursive font */
}

.row-bttn-verify{
    margin-top: 15px;
}

.row-bttn-verify .bttn-verify{
    outline: 0;
    border: none;
    width: 100%;
    padding: 10px;
    background-color: #0050B5;
    color: white;
    border-radius: 5px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
}

.row-bttn-verify .bttn-verify:active{
    transform: scale(0.95);
}

/* MEDIA RESPONSIVE QUERIES */
/*phones => 600px and down*/
@media(max-width:600px) {
    .upload-doc .upload-doc-descrp{
        width: 90%;
    }

    .upload-doc-descrp h1{
        font-size: 1.65rem;
        font-weight: 700;
    }
    
    .upload-doc-descrp p{
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .upload-doc-descrp p span{
        font-weight: 700;
        font-size: 1.45rem;        
    }
}

/*Portrait tablets and large phones => 600px and up*/
@media(min-width:601px) {
    .upload-doc .upload-doc-descrp{
        width: 90%;
    }

    .upload-doc-descrp h1{
        font-size: 1.65rem;
        font-weight: 700;
    }
    
    .upload-doc-descrp p{
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .upload-doc-descrp p span{
        font-weight: 700;
        font-size: 1.45rem;        
    }
}

/*Medium devices - landscape tablets => 768px and up*/
@media(min-width:768px) {
    .upload-doc .upload-doc-descrp{
        width: 90%;
    }

    .upload-doc-descrp h1{
        font-size: 2rem;
    }
    
    .upload-doc-descrp p{
        font-size: 1rem;
        line-height: 1.5;
    }

    .upload-doc-descrp p span{
        font-weight: 700;
        font-size: 1.65rem;        
    }
}

/*Large devices - Laptops and Tablets => 992px and up*/
@media(min-width:992px) {
    .upload-doc .upload-doc-descrp{
        width: 80%;
    }

    .form-upload .row input[type="submit"]{
        margin-top: 20px;
        width: 60%;
    }

}

/*Extra-Large devices => 1200px and up*/
@media(min-width:1200px) {}