* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Heebo", sans-serif;
}

body {
    background: linear-gradient(84.47deg, #337e57 -10.39%, #28aa2e 92.97%);
}

.nav-1stlevel {
    background: #ffffff;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.nav-1stlevel a {
    font-size: 12px;
    color: #cccccc;
}

.header-logo {
    background: url("../images/ud-logo-blue.svg") no-repeat center center;
    background-size: contain;
    width: 23px;
    height: 18px;
}

.nav-2ndlevel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px 7px 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-2ndlevel a {
    font-size: 14px;
    color: #ffffff;
}

.service-grp a {
    padding: 8px;
    font-weight: bold;
    opacity: 0.5;
}

.content-container {
    margin: 0 20px;
}

.branding-area {
    margin: 38px 0 15px 0;
}

.branding-logo-container .branding-logo {
    display: block;
    width: 55px;
    height: 44px;
    margin: 0 auto;
}

.branding-logo-container h1 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
}
.branding-icon-container {
    width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    margin-top: 5 px;
}

.line {
    position: relative;
    -webkit-align-self: center;
    align-self: center;
    width: 30px;
    height: 1px;
    background: #fff;
}

.dot {
    position: absolute;
    height: 100%;
    width: 5px;
    background: #28aa2e;
    animation: dotleft 0.9s cubic-bezier(0.72, 0.03, 0.75, 0.54) infinite;
}

@keyframes dotleft {
    0% {
        left: 0;
    }
    100% {
        left: 30px;
    }
}

.icon-server {
    display: block;
    width: 35px;
    height: 35px;
    background: url("../images/icon-server.svg") no-repeat center center;
    background-size: contain;
}

.icon-website {
    display: block;
    width: 52px;
    height: 25px;
    background: url("../images/icon-website.svg") no-repeat center center;
    background-size: contain;
}

.icon-crypto {
    display: block;
    width: 30px;
    height: 25px;
    background: url("../images/icon-crypto.svg") no-repeat center center;
    background-size: contain;
}

.promotion-area {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.promotion-content-container {
    display: flex;
    padding: 20px;
}

img.promotion-graphic {
    width: 87px;
    height: 80px;
    margin-right: 12px;
}

.promotion-text h3 {
    font-size: 15px;
    color: #ffffff;
}

.promotion-text ul li,
.promotion-text ul li a {
    font-size: 13px;
    color: #ffffff;
}

.promotion-text ul {
    padding-left: 20px;
}

.form-area {
    margin-top: 16px;
    background: #ffffff;
    border-radius: 3px;
    height: 400px;
}

.form-content-container {
    padding: 12px 20px;
}

.form-area h2 {
    font-size: 18px;
    color: #28aa2e;
    font-weight: 300;
    margin-bottom: 10px;
}
.form-area p {
    font-size: 16px;
    color: #6c6c6c;
    margin-bottom: 20px;
}

.form-area .input-block {
    position: relative;
}

.form-area input {
    width: 94%;
    border: 1px solid #bcbcbc;
    padding: 12px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.form-area .placeholder {
    position: absolute;
    margin: 12px 0;
    padding: 0 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #cccccc;
    top: 0;
    left: 10px;
    transition: all 0.2s;
    transform-origin: 0% 0%;
    background: none;
    pointer-events: none;
}

.input-block input:focus + span.placeholder,
.input-block input:valid + span.placeholder {
    transform: scale(0.8) translateY(-30px);
    background: #fff;
}

.input-block input:focus {
    color: #2a3795;
    border-color: #2a3795;
}

.input-block input:focus + span.placeholder {
    color: #2a3795;
}

.form-area .btn-login {
    width: 100%;
    background: #2a3795;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    padding: 11px 0;
    cursor: pointer;
}

.form-content-container a {
    color:#2a3795;
    text-decoration: underline;
    display: block;
    margin: 0 auto;
    margin-top: 12px;
    text-align: center;
}

@media screen and (min-width: 429px) {
    body {
        background: linear-gradient(
            to right,
            #337e57 0%,
            #28aa2e 60%,
            rgb(255, 255, 255) 60%,
            rgb(255, 255, 255) 100%
        ) !important;
    }
    header {
        position: relative;
    }

    .security-content-page {
        height: 90vh;
    }

    .nav-1stlevel {
        background: none;
        margin: 8px 40px 8px 8px;
        padding: unset;
    }

    .nav-1stlevel a {
        font-size: 14px;
        margin-right: 40px;
        font-weight: bold;
    }

    .header-logo {
        background: url("../images/ud-logo-white.svg") no-repeat center center;
        background-size: contain;
        width: 28px;
        height: 25px;
    }

    .nav-2ndlevel {
        border: none;
        position: absolute;
        top: 0;
        padding: 3px 0;
        width: 100%;
    }

    .nav-2ndlevel .language-grp,
    .nav-2ndlevel .language-grp a {
        font-size: 14px;
        color: #cccccc;
        font-weight: bold;
    }

    .service-grp {
        margin-left: 50px;
    }

    .language-grp {
        margin-right: 18px;
    }

    .content-container {
        margin: 20% 0;
        display: flex;
        align-items: center;
    }

    .branding-area {
        position: relative;
        width: 60%;
        height: 100%;
        margin: unset;
    }

    .promotion-area {
        position: absolute;
        left: 20px;
        bottom: 50px;
    }

    .form-area {
        background: none;
        border-radius: unset;
        width: 40%;
        height: fit-content;
    }

    .form-content-container {
        padding: unset;
        width: 80%;
        margin: 0 auto;
    }

    .form-area input {
        width: 94%;
    }

    .branding-logo-container .branding-logo {
        display: block;
        width: 98px;
        height: 78px;
        margin: 0 auto;
    }
    .branding-logo-container h1 {
        font-size: 26px;
        margin-top: 12px;
    }
    .branding-icon-container {
        width: 500px;
        justify-content: center;
        margin: 0 auto;
        margin-top: 24px;
    }

    .line {
        position: relative;
        -webkit-align-self: center;
        align-self: center;
        width: 30px;
        height: 1px;
        background: #fff;
    }

    .dot {
        position: absolute;
        height: 100%;
        width: 5px;
        background: #28aa2e;
        animation: dotleft 0.9s cubic-bezier(0.72, 0.03, 0.75, 0.54) infinite;
    }

    .icon-server {
        width: 75px;
        height: 50px;
    }

    .icon-website {
        width: 75px;
        height: 35px;
    }

    .icon-crypto {
        width: 75px;
        height: 35px;
    }

    .form-area h2 {
        font-size: 22px;
    }
    .form-area p {
        font-size: 16px;
        color: #6c6c6c;
    }

    img.promotion-graphic {
        width: 162px;
        height: 150px;
        margin-right: 20px;
    }

    .promotion-text h3 {
        font-size: 16px;
    }

    .promotion-text ul li,
    .promotion-text ul li a {
        font-size: 14px;
    }

    .resend-button {
        border:none;
        background:none;
        display:contents;
    }
}
