@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100..700&display=swap');

/*
    font-family: "Unbounded", sans-serif;
*/

html {
    min-height: 100%;
}

body {
    background-color: #161829;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    min-height: 100%;
}

strong {
    font-weight: 700;
}

.layout {
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    position: relative;
    z-index: 1;
}

.header .logo {
    display: block;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 auto;
    padding: 0 10px;
}

.content {
    -webkit-animation: slide-in-top 1s ease-out 0.25s both;
    animation: slide-in-top 1s ease-out 0.25s both;
    background-color: rgba(0, 19, 113, 0.56);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-radius: 45px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding: 45px 35px;
    text-align: center;
}

.title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.envelope {
    -webkit-animation: slide-in-top 0.75s ease-out 0.5s both;
    animation: slide-in-top 0.75s ease-out 0.5s both;
    margin: 0 auto 35px;
}

.footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 35px auto;
    max-width: 530px;
    width: 100%;
}

.security {
    -webkit-animation: slide-in-bottom 0.5s ease-out 0.75s both;
    animation: slide-in-bottom 0.5s ease-out 0.75s both;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    padding: 10px;
    max-width: 160px;
    width: 100%;
}

.security:nth-child(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.security:nth-child(3) {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

.security-title {
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 5px;
}

@media (max-width: 1599px) {
    .header .logo {
        width: 320px;
    }

    .content {
        padding: 38px 30px;
        max-width: 530px;
    }

    .envelope {
        margin-bottom: 25px;
    }

    .title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .footer {
        margin: 25px auto;
        max-width: 500px;
    }

    .security-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .layout {
        background-image: url(../images/bg-mob.jpg);
    }

    .header .logo {
        width: 235px;
    }

    .content {
        border-radius: 35px;
        padding: 38px 22px;
    }

    .envelope {
        margin-bottom: 20px;
        width: 140px;
    }

    .title {
        font-size: 22px;
    }

    .security {
        font-size: 11px;
    }

    .security-icon {
        width: 32px;
    }

    .security-title {
        font-size: 16px;
        margin-top: 3px;
        margin-bottom: 3px;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-top {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-bottom {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}