
/* Flex Section 1>Container 2A layout Start  */

.login-page .flex-container-2A, .signup-page .flex-container-2A {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    align-items: center;
    font-weight: bold;
    line-height: 40px;
    /*background-image: url(/images/homepage/login_page_backgroud.jpeg);*/
    height: 700px;
    background-size: 100% auto;
}

/* Flex Section 1>Container 2A >Center Block layout End  */

/* Flex Section 1>Container 2A >Right Block layout Start  */

.login-page .flex-item-C2Aright2A {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #000000;
    font-size: 18px;
    margin-left: 20px;
    margin-right: 20px;
    border: #affc41 2px solid;
    max-width: 350px;
}

.login-page .flex-item-C2Aright2A > div {
    text-align: center;
}

.login-page .flex-item-C2Arighttext2A {
    display: flex;
    max-width: 400px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    font-size: 11px;
    line-height: 1;
    padding-top: 20px;
    padding-bottom: 10px;

}

/* Responsive - Flex Section 1>Container 2A >Right Block layout */
@media (max-width: 600px) {
    .login-page .flex-item-C2Aright2A {
        flex: 100%;
        font-size: 18px;
        padding: 10px;
    }
    .login-page .flex-item-C2Arighttext2A {
        display: flex;
        text-align: center;
        font-size: 10px;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        padding: 10px;
    }
}


/* Flex Section 1>Container 2A >Right Block layout End  */

/* Flex Section 1>Container 2A layout End  */



.login-page  input[type=text], .login-page  select, .login-page  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}
input[pattern]:invalid{
  color:red;
}
.login-page  input[type=number], .login-page  select, .login-page  textarea, .login-page  input[type=tel] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.login-page  label {
    display: inline-block;
    width: auto;
    text-align: left;
}

.login-page  input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: center;
    font-size: 18px;
}

.login-page  input[type=submit]:hover {
    background-color: #45a049;
}

.login-page .col-25 {
    float: center;
    font-size: 18px;
    text-align: left;
}

.login-page .col-75 {
    float: center;
    padding-bottom: 25px;
}

/* Clear floats after the columns */
.login-page .row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .login-page input[type=text], .login-page select, .login-page textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        resize: vertical;
    }

    .login-page input[type=number], .login-page select, .login-page textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        resize: vertical;
    }

    .login-page label {
        display: inline-block;
        width: auto;
    }

    .login-page input[type=submit] {
        background-color: #04AA6D;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        float: center;
    }

    .login-page input[type=submit]:hover {
        background-color: #45a049;
    }

    .login-page .col-25 {
        text-align: left;
        font-size: 18px;
    }

    .login-page .col-75 {
        float: center;
        padding-bottom: 25px;
    }

    /* Clear floats after the columns */
    .login-page .row:after {
        content: "";
        display: table;
        clear: both;
    }
}




