body {
    font-family: 'Roboto Condensed', sans-serif;
    background: url("https://wbdwsip.in/images/main/slide1.jpg") no-repeat center center fixed;
    background-size: cover;
}

ol,
ul {
    list-style: none;
}

.box {
    /*background-color: rgba(255, 255, 255, 1);*/
    margin: 0 auto;
}

.info-box {
    position: absolute;
    width: 30%;
    background-color: transparent;
    right: 30%;
    top: 0;
    bottom: 0;
    padding-top: 100px;
}

.info-box ul {
    padding-left: 0px;
    padding-right: 40px;
}

.info-box ul li {
    list-style-type: none;
    padding: 6px 0px;
    border-bottom: 1px solid #eee;
}

.info-box ul li i {
    width: 32px;
}

.login-box {
    position: absolute;
    margin: 0;
    left: 50%;
    top: 30%;
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%-30%);
    text-align: center;
    padding: 40px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
}

.login-box img {
    /*border-radius: 50%;*/
    margin-bottom: 20px;
}

.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.floating-input,
.floating-select {
    font-size: 14px;
    padding: 4px 4px;
    display: block;
    width: 100%;
    height: 30px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #757575;
}

.floating-input:focus,
.floating-select:focus {
    outline: none;
    border-bottom: 2px solid #5264AE;
}

label {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.floating-input:focus~label,
.floating-input:not(:placeholder-shown)~label {
    top: -18px;
    font-size: 14px;
    color: #5264AE;
}

.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
    top: -18px;
    font-size: 14px;
    color: #5264AE;
}

/* active state */
.floating-input:focus~.bar:before,
.floating-input:focus~.bar:after,
.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
    width: 50%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
}

/* highlighter */
.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.floating-input:focus~.highlight,
.floating-select:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* animation */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

/****  floating-Lable style end ****/

button {
    border: 0;
    background: none;
    box-shadow: none;
    border-radius: 0px;
    background-color: steelblue;
    /*padding: 10px 40px;*/
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: lightsteelblue;
}

button .left {
    float: left;
    border-right: 1px solid lightsteelblue;
    padding: 12px;
}

button .right {
    float: left;
    padding: 12px 24px;
}

.demo1 {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, .5);
    /* 50% white from bottom */
}

.red {
    color: #8B0000;
}


/* Overlay styles */
   .overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
    z-index: 1001;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;   
    flex-direction: column;
}
.overlay__content p {margin-top: 20px;}

 .overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    display: inline-block;
    border-width: 5px;
    border-color: yellow;
    border-top-color: #00f;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
    background: #fff;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}