/* Comstom */
#containerCard {
    height: 80%;
    padding-top: 5rem;
}

.rounded-circle {
    width: 30%;
    padding-top: 30%;
    /* 1:1 Aspect Ratio */
    position: relative;
    background-image: url(/images/user_green.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#signUpImage {
    width: 30%;
    padding-top: 30%;
    /* 1:1 Aspect Ratio */
    position: relative;
    background-image: url(/images/user_sign_in.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#signInImage {
    width: 30%;
    padding-top: 30%;
    /* 1:1 Aspect Ratio */
    position: relative;
    background-image: url(/images/user_sign_up.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.has-max {
    max-width: 30rem;
    margin: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.small_Img {
    max-width: 20rem;
    margin: auto;
}

/* SignUp image change*/
/* https://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/ */
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    color: black;
    display: inline-block;
}

.inputfile:focus + label,
.inputfile + label:hover {
    color: gray;
}

.inputfile + label {
    cursor: pointer;
}

.inputfile:focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    pointer-events: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}




/*---Media Queries --*/
@media (max-width: 992px) {

}
@media (max-width: 768px) {
    .btn {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .btn {
        font-size: 0.8rem;
    }
}