* {
    outline: 0 !important;
    box-sizing: border-box;
    margin: 0;
}

body {
    word-wrap: break-word;
    font-family: 'Lato', 'Roboto', sans-serif;
    font-weight: 300;
    color: #fff;
    scroll-behavior: smooth;
}

.district-logo-container {
    width: 300px;
    position: fixed;
    top: 0;
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 30px 30px;
    left: calc(50% - 300px/2);
    z-index: 1000;
    background: #fff;
}

.light-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    min-height: 15px;
    z-index: 1000;
}

.bg-conf {
    background-image: url("../images/33rd_RDC_bg.jpg?v=33");
    background-size: cover;
    background-position: bottom center;
    width: 100vw;
    height: 100vh;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.assembly-logo {
    width: 300px;
}

.custom-input {
    padding: 12px;
    width: 100%;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    text-align: center;
    outline: none;
    background: #fff;
    max-width: 250px;
}

.btn-signin {
    color: #fff;
    background: #b4084c;
    padding: 10px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    max-width: 250px;
}

.btn-signin:hover {
    background: #aa0145;
}

.btn-signin:disabled,
.btn-signin:disabled:hover {
    background: #ca1a60;
}

.btn-signin:active {
    opacity: 0.9;
}

.error {
    color: #f43838;
    font-size: 14px;
    font-weight: 500;
    max-width: 500px;
}

.success-label {
    font-weight: 400;
    color: #ddd;
}

.checking-label {
    font-family: monospace;
    text-transform: uppercase;
    color: #ccc;
}

.checking-no {
    font-family: 'Roboto', 'Lato', sans-serif;
    font-size: 70px;
    font-weight: 500;
    color: #ccc;
}

.group {
    font-family: 'Roboto', 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #f8b109;
}

.pulse {
    animation: hithere 4s ease infinite;
}

#ftco-loader,
#blog-loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #360027, #860637);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 1000;
}

#ftco-loader.fullscreen,
#blog-loader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: linear-gradient(45deg, #360027, #860637);
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#ftco-loader.show,
#blog-loader.show {
    -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#ftco-loader .circular,
#blog-loader .circular {
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 12px);
    top: calc(50% - 12px);
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

#ftco-loader .path,
#blog-loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@media(max-width: 475px) {
    .district-logo-container {
        width: 250px;
        left: calc(50% - 250px/2);
        padding: 10px;
        border-radius: 0 0 20px 20px;
    }
    .bottom-bar {
        min-height: 10px;
    }
    .assembly-logo {
        width: 200px;
    }
}

@media(max-height: 725px) {
    .custom-input {
        padding: 9px 12px !important;
    }
}

@-webkit-keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

@keyframes hithere {
    30% {
        transform: scale(1.2);
    }
    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }
    50% {
        transform: rotate(20deg) scale(1.2);
    }
    70% {
        transform: rotate(0deg) scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}