﻿body {
    margin: 0;
    /* background: #25A3FF;
    background: url(../img/bg-img-01.jpg) center center/cover no-repeat;*/
    /*    background: url(../img/Foreground-02.jpg) center center/cover no-repeat;*/
    background: url(../img/Background-02.jpg) center center/cover no-repeat;
    font-family: var(--font-family-opensan);
    overflow-x: hidden;
}


h1 {
    position: relative;
    color: #fff;
    opacity: 0;
    transition: .8s ease-in-out;
}


#progress {
    position: absolute;
    background: #4454b957;
    /* background-image: url(../img/wallpaper_006.png); #f1b4b487   #e3165b73  
    background-image: url(../img/Foreground-02.jpg);*/
    height: 100vh;
    width: 0;
    transition: width 0.2s ease-in-out;
    background-size: cover;
}

.center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


#register {
    background: #fff;
    position: relative;
    width: 550px;
    box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12), 0 8px 10px -5px rgba(0,0,0,0.3);
    transition: transform .1s ease-in-out;
}

    #register.close {
        width: 0;
        padding: 0;
        overflow: hidden;
        transition: .8s ease-in-out;
        box-shadow: 0 16px 24px 2px rgba(0,0,0,0);
    }

#forwardButton {
    position: absolute;
    right: 20px;
    bottom: 12px;
    font-size: 40px;
    /*color: #fbc02d; */
    color: #9b9da9;
    float: right;
    cursor: pointer;
    z-index: 20
}

#previousButton {
    position: absolute;
    font-size: 18px;
    left: 30px; /* same as padding on container */
    top: 12px;
    z-index: 20;
    color: #9e9e9e;
    float: right;
    cursor: pointer;
}

    #previousButton:hover {
        color: #9e9e9e;
    }

#forwardButton:hover {
    color: #9e9e9e;
}

.wrong #forwardButton {
    color: #ff2d26
}

.close #forwardButton, .close #previousButton {
    color: #fff
}

#inputContainer {
    position: relative;
    padding: 30px 20px 20px 20px;
    margin: 10px 60px 10px 10px;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

    #inputContainer input {
        position: relative;
        width: 100%;
        border: none;
        font-size: 20px;
        font-weight: bold;
        outline: 0;
        background: transparent;
        box-shadow: none;
        font-family: var(--font-family-opensan);
    }

#inputLabel {
    position: absolute;
    pointer-events: none;
    top: 32px; /* same as container padding + margin */
    left: 20px; /* same as container padding */
    font-size: 20px;
    font-weight: bold;
    transition: .2s ease-in-out;
}

#inputContainer input:valid + #inputLabel {
    top: 6px;
    left: 42px; /* space for previous arrow */
    margin-left: 0 !important;
    font-size: 11px;
    font-weight: normal;
    color: #9e9e9e;
}

#inputProgress {
    border-bottom: 3px solid #5490e8;
    /* border-bottom: 3px solid #fbc02d;*/
    width: 0;
    transition: width .6s ease-in-out;
}

.wrong #inputProgress {
    border-color: #ff2d26;
}

.wrong #inputError {
    display: block !important;
    color: red;
    position: relative;
    top: 10px;
}

.already_account {
    margin-top: -5rem !important;
}

.already_account {
    font-size: larger;
    color: #000;
    opacity: 1.0;
    font-weight: 400;
    position: relative;
    z-index: 9999999;
}

@media (max-width: 420px) {
    #forwardButton {
        right: 10px
    }

    #previousButton {
        left: 10px
    }

    #inputLabel {
        left: 0
    }

    #inputContainer {
        padding-left: 0;
        margin-right: 20px
    }
}

@media (max-width: 767px) {

    #google-signin {
        display: none;
    }
}

@media (min-width: 1400px) {
    #forwardButton {
        bottom: 2px;
    }
}

.card.card-default {
    border: 0.5px solid #c8bfbf80;
    box-shadow: 1px 0 6px 0 #c6c6c6, 0 0 1px 0 transparent;
    border-radius: 4px;
}