@charset "utf-8";

/* CSS Document */
/* BASIC */
html {
    background: #56baed;
    text-decoration: none;
}

body {
    background: #ccc;
    background-image: url("../../img/woman-bg2.png");
    font-family: "Poppins", sans-serif;
    height: 100%;
}

#formContent {
    padding-top: 150px;
}

bg-dark {
    background: aliceblue;
}

.loginword {
    font-size: 16px;
}

a {
    color: #92badd;
    display: inline-block;
    font-weight: 400;
    text-decoration: none;
}

h2 {
    color: #ccc;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 40px 8px 10px 8px;
    text-align: center;
    text-transform: uppercase;
}

/* STRUCTURE */
.wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 20px;
    width: 100%;
}

#formContent {
    background: #fff;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    max-width: 450px;
    padding: 0;
    position: relative;
    text-align: center;
    width: 90%;
}

#formFooter {
    background: #f6f6f6;
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
}

/* TABS */
h2.inactive {
    color: #ccc;
}

h2.active {
    border-bottom: 2px solid #5fbae9;
    color: #0d0d0d;
}

/* FORM TYPOGRAPHY*/
input[type=button].mb-1 {
    margin-bottom: 26px !important;
}

input[type=button],
input[type=submit],
input[type=reset] {
    background: #56baed;
    border: none;
    border-radius: 6px !important;
    box-shadow: 0 2px 12px 0 rgba(95, 186, 233, 0.4);
    color: white;
    display: inline-block;
    font-size: 16px;
    margin: 5px 20px 40px 20px;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover {
    background: #39ace7;
}

input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"] {
    background: #f0f0f0;
    border: 1px solid #dcdcdc;
    border-radius: 6px !important;
    color: #0d0d0d;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 16px;
    outline: none;
    padding: 15px;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
.loginForm input[type=password]:focus {
    background: #ECEBEB;
    border: 2px solid #5fbae9;
}

.loginForm label {
    padding-left: 6px;
}

.loginForm input[type=password] {
    background: #f6f6f6;
    border-radius: 5px;
    color: #0d0d0d;
    margin: 5px 5px 24px 5px;
    outline: none;
    padding: 15px;
    text-align: left;
    width: 85%;
}

.form-label-group {
    margin-bottom: 0 !important;
}

.card-signin .card-title.cardTitleSetting {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* ANIMATIONS */
/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    content: "";
    background: #56baed;
    bottom: -10px;
    display: block;
    height: 2px;
    left: 0;
    transition: width 0.2s;
    width: 0;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after {
    width: 100%;
}

/* OTHERS */
*:focus {
    color: #22981D;
    outline: none;
}

#icon {
    width: 60%;
}

.todd-card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

@media (max-width: 1024px) {
    input[type=button].mb-1 {
        margin-bottom: 0 !important;
    }

    .mobileContactUsForm {
        display: flex;
        flex-wrap: wrap;
    }

    .mobileContactUsForm .form-label-group {
        width: 46.9%;
    }

    .mobileContactUsForm .form-label-group:nth-child(2n+2) {
        margin-left: 6.2%;
    }

    .mobileContactUsForm .form-label-group input {
        border-radius: 20px;
        width: 100%;
    }

    .todd-card-body {
        flex: 1 1 auto;
        min-height: 1px;
        padding: 0.96rem 1rem 1.58rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        display: inline-block;
        font-size: 1rem;
        line-height: inherit;
        margin-right: 1rem;
        padding-bottom: 0.3125rem;
        padding-top: 0.3125rem;
        white-space: nowrap;
    }

    #formContent {
        margin-top: 60px;
        width: 94%;
    }

    #formContent.mt0 {
        margin-top: 0;
    }

    .card-body {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-height: 1px;
        padding: 1.25rem;
    }
}