/*----------------------------------*/
/*			CSS GERAL				*/
/*----------------------------------*/

* {
    margin: 0;
}

html {
    position: relative;
    overflow-x: hidden;
}

body {
    background: url('../images/background.jpg') no-repeat bottom center;
    background-size: cover;
    font-family: 'Saira Semi Condensed', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/*=================
Section Main Navigation
==================*/

.alterMedica_logo {
    width: 100%;
    max-width: 500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 40px
}

/*=================
Text Styles
==================*/

.align_left {
    text-align: left;
}

.align_right {
    text-align: right;
}

.align_center {
    text-align: center;
}

.txt_bold {
    font-weight: 700;
}

.txt_italic {
    font-style: italic;
}

p {
    font-size: 14px;
    color: #3f3f3e;
}


/*=================
Banner
==================*/

span.txtRegular {
    font-size: 20px;
    line-height: auto;
}

span.txtSignature {
    font-size: 16px;
    line-height: 0px;
}


hr {
    width: 90%;
    height: 5px;
    border: none;
    background: #6e6e6e;
    border-radius: 25px;
}

.brands p {
    text-align: center;
    padding: 5px 40px;
}

.brands h2 {
    color: #ffffff;
    padding: 5px 16px;
    font-size: 28px;
}

.brands.cardio h2 {
    background: #ac1e30;
}

.brands.cardio a {
    color: #ac1e30;
    text-decoration: underline;
}

.brands.psyc h2 {
    background: #ad2077;
    margin-top: 40px;
}

.brands.psyc a {
    color: #ad2077;
    text-decoration: underline;
}

.brands.neuro h2 {
    background: #693491;
    margin-top: 40px;
}

.uro {
    margin-bottom: 80px;
}

.brands.uro a {
    color: #e45726;
    text-decoration: underline;
}

.brands.uro h2 {
    background: #e45726;
    margin-top: 40px;
}

.brands.neuro a {
    color: #693491;
    text-decoration: underline;
}

.alterMedica_brandLogo {
    width: 100%;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}


/*=================
Login
==================*/

.loginForm {
    margin-top: 80px
}


.loginForm input[type=text], .loginForm input[type=password] {
    display: block;
    margin: 0 auto;
    width: 50%;
    padding: 0px 20px 5px 20px;
    color: #333333;
    background: none;
    border: 2px solid #333333;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: 25px;
    outline: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #333333;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #333333;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #333333;
}

.alertMsg {
    background: rgba(151,25,29,0.7);
    padding: 16px;
    width: 60%;
    margin: 30px auto;
    text-align: center;
    color: #ffffff;
}

.alertMsg span {
    font-size: 20px;
}

.btnLogin {
    display: block;
    margin: 15px auto;
    background-color: #039496;
    border: 2px solid #039496;
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btnLogin:hover {
    color: #039496;
    background-color: #ffffff;
    border: 2px solid #039496;
}

/*=================
Section Footer
==================*/

footer {
    font-family: 'Barlow Condensed', sans-serif;
    background-color: #333333;
    padding-top: 15px;
    padding-bottom: 15px;
}

footer.refs {
    background-color: inherit;
}

footer p {
    text-align: justify;
    font-size: 10px;
    line-height: 10px;
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 0px;
}

.legalInfo p {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 0px;
}

.legalInfo a {
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.rcm {
    margin-top: 10px;
    margin-bottom: 10px;
}

.rcm p {
    margin-bottom: 15px;
}

/*----------------------------------*/
/*		LAYOUT BREAKPOINTS			*/
/*----------------------------------*/

@media screen and (max-width:1200px) {

}

@media screen and (max-width:991px) {

}

@media screen and (max-width:767px) {

    html.h-100 {
        height: inherit;
    }

    footer p {
        text-align: left;
    }
}

@media screen and (max-width:640px) {

}

@media screen and (max-width:575px) {

}

@media screen and (max-width:500px) {


}

@media screen and (max-width:400px) {


}

@media screen and (max-width:320px) {

}



