body {
    background-color: #101010;
    margin: 0;
    color: #fff;
    font-family: 'Montserrat';
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wrapper-content {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}

.wrapper-login {
    width: 100%;
    box-sizing: border-box;
}

.back-sec {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #363636;
}

.header-login-form {
    margin-bottom: 24px;
    text-align: center;

    & .title {
        font-size: 20px;
        font-weight: 600;
    }
}

.field-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;

    & label {
        font-size: 14px;
        color: #5a5a5a
    }

    & input {
        background-color: #363636;
        border: 1px solid #474747;
        border-radius: 5px;
        padding: 10px 14px;
        color: #747474;
        transition: all .3s;
        margin-top: 8px;
        width: 100%;
        box-sizing: border-box;
        &:focus {
            outline: none;
            box-shadow: none;
            border-color:#5a5a5a;
            color: #fff;
        }
    }
}

button {
    margin-top: 24px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 30px;
    border: 1px solid #6e6e6e;
    background-color: #ffffff28;
    display: inline;
    color: #Fff;
    width: auto;
    transition: all .3s;
    cursor: pointer;
    width: 100%;

    &:hover {
        border-color: #b9b9b9;
        background-color: #ffffff59;
    }
}

.loader {
    position: relative;
    width: 50px;
}

.loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

/* Circular Animation */
.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* Path Animation */
.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

/* Keyframes */
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {

    0%,
    100% {
        stroke: #e9e9e9;
    }

    40% {
        stroke: #bdbdbd;
    }

    66% {
        stroke: #c7c7c7;
    }

    80%,
    90% {
        stroke: #d4d4d4;
    }
}

.showbox {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}


.loader__container {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 100%;
    opacity: 0;
    transition: all .3s;
}

#loader-form-send {
    width: 100%;
    background-color: #13131777;
    z-index: 99;
    display: none;
}
#loader-form-send .loader {
    width: 70px;
}

.wrapper-error {
    position: absolute;
    max-width: 400px;
    width: 100%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    border-color:#a50808;
    background-color: #a508080a;
    animation: animatebottom 0.4s;


    & .title {
        font-size: 12px;
        color: #b9b9b9
    }

    & .icon {
        font-size: 22px;
        color: #a50808;
        margin-right: 12px;
    }
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0;
    }

    to {
        bottom: 20px;
        opacity: 1;
    }
}