﻿.counter {
    color: #5383b1;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 5px;
    font-size: 13px;
    user-select: none;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    height: 40%;
}

.first-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: min-content;
}

.second-section, .third-section {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: min-content;
    display: none;
    opacity: 0;
}

.input-icon i {
    position: absolute;
    justify-content: space-between;
}

.instructions > h3 {
    margin-bottom: 40px;
}

.actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.third-action {
    display: flex;
    flex-direction: column;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes move-in {
    0% {
        top: 50px;
        opacity: 0;
    }

    100% {
        top: 0px;
        opacity: 1;
    }
}

h2 {
    font-size: 22px;
    /*font-weight: bold;*/
}

h5 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 19px;
    max-width: 80%;
}

h2, p {
/*    margin: 0;
    padding: 2px;*/
    margin: 10px 0 0 10px;
}

    h2 ~ p {
        color: #5383b1;
        font-size: large;
    }

.input-email,
.input-code,
.input-password {
    padding: 18px;
    text-align: left;
    width: 50%;
    height: 20px;
    border-radius: 8px;
    border: 1px solid rgb(58, 58, 58);
    font-size: 16px;
    margin: 10px 5px;
}

.btn-email,
.btn-code,
.btn-password {
    width: 35%;
    padding-block: 8px;
    border-radius: 20px;
    border: none;
    box-shadow: 2px 2px 4px black;
    background-color: #1f3d59;
    color: white;
    transition: 0.5s;
    cursor: pointer;
    margin-top: 30px;
    font-size: 13px;
}


    .btn-email:hover,
    .btn-code:hover,
    .btn-password:hover {
        width: 36%;
        transition: 0.5s;
        background-color: #5383b1;
        color: white;
    }

img {
    width: 100px;
    height: auto;
}

.title-text {
    text-align: right;
}



@media screen and (max-width: 850px) {
    .container-fluid {
        height: 85%;
    }

    .title-container {
        flex-direction: column;
        align-items: center;
    }

    .title-text {
        text-align: center;
        margin-top: 70px;
    }

    .input-email,
    .input-code,
    .input-password {
        width: 80%;
    }

    .btn-email,
    .btn-code,
    .btn-password {
        width: 60%;
    }


        .btn-email:hover,
        .btn-code:hover,
        .btn-password:hover {
            width: 61%;
        }
}