/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .hero-content h2{
        font-size:1rem;
    }

    .pos-vertical-center h1 {
        font-size: 1rem;
    }


}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .pos-vertical-center h1 {
        font-size: 1.25rem;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .hero-content h2 {
        font-size: 1.75rem;
    }

    .pos-vertical-center h1 {
        font-size: 1.5rem;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .hero-content h2 {
        font-size: 2rem;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .hero-content h2 {
        font-size: 2rem;
    }


}


.user-input-wrp {
    position: relative;
    /*width: 50%;*/
    margin-bottom: 30px;
}

    .user-input-wrp .inputText {
        width: 100%;
        outline: none;
        border: none;
        border-bottom: 1px solid #777;
        box-shadow: none !important;
    }

        .user-input-wrp .inputText:focus {
            border-color: #20396a;
            border-width: medium medium 2px;
        }

    .user-input-wrp .floating-label {
        position: absolute;
        pointer-events: none;
        top: 18px;
        right: 10px;
        transition: 0.2s ease all;
    }

    .user-input-wrp input:focus ~ .floating-label,
    .user-input-wrp input:not(:focus):valid ~ .floating-label {
        top: 0px;
        left: 10px;
        font-size: 13px;
        opacity: 1;
    }


#welcome-section {
    border-radius: 10px;
    border: 5px solid #0055ff;
    background-color: white;
    text-align: center;
    margin: 10px auto;
    padding: 20px;
}

    #welcome-section h5 {
        line-height: 2.5rem;
    }

    #welcome-section #section1 {
        margin: 10px auto 100px auto;
    }

    #welcome-section #section1 {
        margin: 10px auto 100px auto;
    }

#active_account_btn {
    margin: 20px auto;
}

#forgot_password_section #forgot_pass_btn{
   
}