body {
    background-color: #4d7496;
}

.login-logo {
    width: 100px;
    margin: 19px 25px;
}

.login-logo-wrapper {
    background-color: white;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    margin: 0 auto 25px;
}

.login-form input[type="text"],
.login-form textarea,
.login-form select,
.login-form input[type="checkbox"],
.login-form input[type="radio"],
.login-form input[type="password"] {
    margin: 0;
    background: transparent;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid white;
}

.login-form {
    width: 222px;
    margin: 100px auto;
    color: white;
}

    .login-form .form-control {
        color: white;
    }

    .login-form .input-group-addon {
        background: transparent;
        border: none;
        color: white;
        width: 24px;
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid white;
        border-radius: 0;
    }

    .login-form input[type="submit"] {
        background-color: #314a60;
        border-color: #2a4053;
        border-radius: 3px;
        color: #cacaca;
    }

        .login-form input[type="submit"]:hover {
            background-color: #2a4053;
        }

    .login-form .custom-checkbox {
        margin: 20px 0 10px 0;
    }

input:-webkit-autofill {
    webkit-box-shadow: 0 0 0px 1000px rgb(77, 116, 150) inset;
    webkit-text-fill-color: white !important;
}

.localbtnAsLink {
    float: left;
    background-color: transparent !important;
    border: none !important;
    cursor: pointer;
    text-decoration: underline;
    padding: 0px;
}

#countdown {
    position: relative;
    margin: auto;
    margin-top: 5px;
    height: 40px;
    width: 40px;
    text-align: center;
}

#countdown-number {
    color: white;
    display: inline-block;
    line-height: 40px;
}

svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    transform: rotateY(-180deg) rotateZ(-90deg);
}

    svg circle {
        stroke-dasharray: 113px;
        stroke-dashoffset: 0px;
        stroke-linecap: round;
        stroke-width: 3px;
        stroke: white;
        fill: none;
        animation: countdown 300s linear forwards;
    }

@keyframes countdown {
    from {
        stroke-dashoffset: 0px;
    }

    to {
        stroke-dashoffset: 113px;
    }
}
