﻿/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
    /* CSS */
}
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
    /* CSS */
}
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (max-width: 767px) {
    input{
        max-width:60%;
        min-width:250px;
    }

    .first-column-login {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .login-page-forms {
        max-width: 80% !important;
    }

    .login-direct{
        display:none;
    }

    .login-row {
        margin-bottom: 20px !important;
    }

}
@media (min-width: 768px) {
    .first-column-login {
        width: 80% !important;
        padding-left: 60px;
        padding-right: 60px;
        display: block !important;
        margin: 0 auto;
    }

    .login-row{
        margin-bottom:20px!important;
    }    

    .second-column-login {
        padding-right: 46px;
        display:block !important;
    }

    .login-call-partial {
        display: none;
    }

    .register-call-partial {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .first-column-login {
        width: 80% !important;
        padding-left: 60px;
        padding-right: 60px;
        display: block !important;
        margin: 0 auto;
    }

    .login-row {
        margin-bottom: 20px !important;
    }    

    .second-login-column {
        padding-right: 59px;
    }
}/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}
/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
    /* CSS */
}
/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
 
}