/* Global */
body {
    padding: 0;
    margin: 0;

    font-family: "Titillium Web", Arial, Helvetica, sans-serif;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

input, a, button {
    outline: none !important;
    border: none !important;
    overflow: visible !important;
}

.has-val {
    height: 55px !important;
}

.has-val-span {
    top: 10px !important;
    font-size: 13px !important;
    color: #111111 !important;
}


/* Main Container */
.dadContainer {
    /* background-color: #0461be; */

    background: #525252;
    
    background: -webkit-linear-gradient(to right, #0461be, #525252);
    background: linear-gradient(to right, #0461be, #525252);
    
    /* background: -webkit-linear-gradient(to right, #0461be, #525252, #0461be); */
    /* background: linear-gradient(to right, #0461be, #525252, #0461be); */

    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

/* Form Container */
.sonContainer {
    width: 560px;
    margin-top: -75px;
    z-index: 5;
}

/* Form */
.signInForm {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.logoHolder {
    width: 100%;
    text-align: center;
}

.logoHolder .scocareLogo {
    width: 50%;
}

/* User Message */
.messagesContainer {
    margin: 20px 0px;
}

.messagesContainer,
.messagesContainerForgotPassword {
    width: 100%;
    height: 40px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
}

.messagesContainer #userMessage,
.messagesContainerForgotPassword #userMessageForgotPassword {
    color: #28a745;
    font-weight: bold;
}

.messagesContainer .errorMessage {
    margin-left: 4px;
}

/* Email Input Container */
.inputHolderOne {
    position: relative;

    border-right: none;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 50%;
    height: 75px;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    background-color: rgba(255, 255, 255, 1);
}

/* Email Input */
.inputHolderOne .emailInput {
    height: 100%;
    transition: all 0.3s;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0 30px;
}


/* Email Input Span */
.inputHolderOne .emailInputSpan {
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    position: absolute;
    pointer-events: none;
    width: 100%;
    padding-left: 30px;
    left: 0;
    top: 28px;
    transition: 0.3s;
}


/* Password Input Container */
.inputHolderTwo {
    position: relative;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 50%;
    height: 75px;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    background-color: rgba(255, 255, 255, 1);
}

/* Password Input */
.inputHolderTwo .passwordInput {
    height: 100%;
    transition: all 0.3s;
    
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0 30px;
}

/* Password Input Span */
.inputHolderTwo .passwordInputSpan {
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    position: absolute;
    pointer-events: none;
    width: 100%;
    padding-left: 30px;
    left: 0;
    top: 28px;
    transition: all 0.3s;
}


/* Sign In Button Container */
.signInBtnHolder {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Sign In Button */
.signInBtnHolder .signInBtn {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 70px;
    overflow: hidden;
    background-color: rgba(33, 33, 33, 1);
    transition: 0.7s;
    position: relative;
    z-index: 1;
}

.signInBtnHolder .signInBtn:hover {
    background-color: rgba(33, 33, 33, 0.5);
}


/* Forgot Password Button Container */
.forgotPasswordBtnContainer {
    width: 100%;
    padding-top: 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgotPasswordBtnContainer .forgotPasswordLinkContainer {
    margin-left: 2px;
}

.forgotPasswordBtnContainer .forgotPasswordBtn {
    font-size: 15px;
    line-height: 1.4;
    color: #cccccc;
}

.forgotPasswordBtnContainer .rememberMyAddressContainer {
    font-size: 15px;
    line-height: 1.4;
    color: #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 4px;
}

.forgotPasswordBtnContainer .rememberMyAddressContainer input {
    margin-right: 6px;
}

.forgotPasswordBtnContainer .rememberMyAddressContainer label {
    margin-top: 5px;
}

/* Forgot Password Container */
.forgotPasswordContainer {
    display: none;

    width: 560px;
    margin-top: -75px;
    z-index: 5;
}

/* Forgot Password Form */
.forgotPasswordForm {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

/* Forgot Password Email Input Container */
.forgotPasswordInputHolder {
    position: relative;

    border-right: 1px solid #e0e0e0;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 100%;
    height: 75px;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    background-color: #ffffff;
}

/* Forgot Password Email Input */
.forgotPasswordInputHolder .forgotPasswordInput {
    height: 100%;
    transition: all 0.3s;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0 30px;
}

/* Forgot Password Email Input Span */
.forgotPasswordInputHolder .forgotPasswordInputSpan {
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    position: absolute;
    pointer-events: none;
    width: 100%;
    padding-left: 30px;
    left: 0;
    top: 28px;
    transition: 0.3s;
}

/* Forgot Password Button Container */
.forgotPasswordResetBtnHolder {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Forgot Password Button */
.forgotPasswordResetBtnHolder .forgotPasswordBtn {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 70px;
    overflow: hidden;
    background-color: rgba(33, 33, 33, 1);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.forgotPasswordResetBtnHolder .forgotPasswordBtn:hover {
    background-color: rgba(33, 33, 33, 0.5);
}

/* Go Back To Sign In Form Button Container */
.goBackToSignInFormBtnContainer {
    width: 100%;
    padding-top: 23px;
    text-align: center !important;
}

.goBackToSignInFormBtnContainer .goBackToSignInFormBtn {
    font-size: 15px;
    line-height: 1.4;
    color: #cccccc;
}


/* Footer */
.footerContainer {
    position: fixed;
    bottom: 0;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.4;
}


/* Error Handling Classes */
.makeInputRed {
    border: 1px solid #f44336;
}


/* Responsive */
@media (max-width: 576px) {
    .inputHolderOne {
        width: 100%;
        border-right: 1px solid #e0e0e0;
    }

    .inputHolderTwo {
        width: 100%;
    }

    .footerContainer {
        display: none;
    }
}