.card{
    padding-top: 1%;
}

.registerForm #emoji {
    width: 100px;
    padding-top: 3%;
}

h2 {
    color: #fdf9ce;
}


.bgimage {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)), var(--background-url);
    background-position: center;
    background-attachment: scroll;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Media Queries for smaller screen sizes */
@media screen and (max-width: 767px) {
    body .registerForm {
        padding: 10% 10%;
    }

    .registerForm .align-items-center {
        margin-top: 15%;
    }

    .bgimage {
        background-size: auto;
    }
}

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

}

.registerForm .align-items-center .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* For Login page form */
.password-wrapper {
    position: relative;
}

i#showHidePassword {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

/* login.html and registration Page form submission Loader */
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid brown;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }

}