body {
    display: flex;
    justify-content: flex-end;
}

i.alert {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent !important;
    border: 1px solid #dc3545;
    color: #dc3545;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
}

.alert-tooltip {
    display: none;
    position: absolute;
    right: 35px;
    top: 0;
    bottom: 0;
    margin: auto;
    align-items: center;
    width: 230px;
    justify-content: center;
    -webkit-transition: .65s linear;
    -moz-transition: .65s linear;
    -ms-transition: .65s linear;
    -o-transition: .65s linear;
    transition: .65s linear;
}

.alert-tooltip-sub {
    background: white;
    border-radius: 10px;
    padding: 5px 10px;
    border: 1px solid;
    font-size: 16px;
    width: 100%;
}

.alert-tooltip-sub:after {
    content: '';
    position: absolute;
    right: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #dc3545;
    top: 0;
    bottom: 0;
    margin: auto;
}

.check {
    cursor: pointer;
    top: 3px;
    position: relative;
    margin: auto;
    width: 18px;
    height: 18px;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
}

.check:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #223254;
    opacity: 0;
    transition: opacity .2s ease;
}

.check svg {
    position: relative;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #C8CCD4;
    stroke-width: 1.5px;
    transform: translate3d(0, 0, 0);
    transition: all .2s ease;
}

.check path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0
}

.check polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66px;
}

.check polyline:hover,
.check polyline:before {
    opacity: 1
}

#cbx:checked + .check svg {
    stroke: #ffffff
}

#cbx:checked + .check path {
    stroke-dashoffset: 60px;
    transition: all .3s linear
}

#cbx:checked + .check polyline {
    stroke-dashoffset: 42px;
    transition: all .2s linear;
    transition-delay: .15s
}

i.alert:hover .alert-tooltip {
    display: flex !important;
}

main {
    position: relative;
    font-size: 20px;
    line-height: 1.5;
    border-radius: 30px;
    overflow: hidden;
    /*margin: 100px auto;*/
    /*background: hsla(0,0%,100%,.3);*/
    width: 100%;
}

main::before {
    content: '';
    margin: -100px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    filter: blur(30px);
    z-index: -1;
}

.align {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1020px;
    margin-right: 130px;
}

.align .container {
    padding-top: 80px;
    padding-bottom: 70px;
}

.penta-logo {
    padding: 30px;
    text-align: center;
}

#login-form .title,
#forgot-password-form .title,
#password-reset-form .title {
    font-size: 34px;
    color: rgba(255,255,255,.4);
    text-align: center;
    margin-bottom: 60px;
}

.left-field {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-field {
    padding-right: 85px;
    padding-left: 85px;
}

input,
button {
    outline: none;
    border: none;
}

input:focus,
button:focus {
    outline: none !important;
}

/* Input */
.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 40px !important;
    margin: auto;
}

.input100 {
    font-size: 15px;
    line-height: 1.5;
    color: #666666;

    display: block;
    width: 100%;
    background: rgba(255, 255, 255, .2);
    height: 50px;
    border-radius: 25px;
    padding: 0 30px 0 68px;
}

.focus-input100 {
    display: block;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    color: rgba(255, 255, 255, 0.8);
}

.input100:focus {
    background: rgba(255, 255, 255, .6);
}

.input100:focus + .focus-input100 {
    -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
    animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 70px 25px;
        opacity: 0;
    }
}

@keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 70px 25px;
        opacity: 0;
    }
}

.symbol-input-1,
.symbol-input-2 {
    font-size: 15px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: #666666;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.symbol-input-1 {
    padding-left: 22px;
}

.symbol-input-2 {
    padding-left: 30px;
}

.input100:focus + .focus-input100 + .symbol-input-1 {
    color: #57b846;
    padding-left: 15px;
}

.input100:focus + .focus-input100 + .symbol-input-2 {
    color: #57b846;
    padding-left: 22px;
}

/* Button */
button {
    cursor: pointer;
}

.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.login100-form-btn {
    font-size: 15px;
    line-height: 1.5;
    color: #fff;

    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: rgba(0, 0, 0, .2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn:hover {
    background: #333333;
}

.util-field {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.txt1 {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .4);
    font-size: 15px;
    padding: 0 5px;
    -webkit-transition: .45s;
    -o-transition: .45s;
    transition: .45s;
}

.txt1:hover {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
}

.txt2 {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .4);
    font-size: 15px;
    padding: 0 5px;
    -webkit-transition: .45s;
    -o-transition: .45s;
    transition: .45s;
}

.txt2:hover {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
}

@media (min-width: 0px) and (max-width: 767px) {
    .left-field,
    .right-field {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .right-field {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    #login-form .title,
    .wrap-input100 {
        margin-bottom: 30px !important;
    }

    .align .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .align {
        margin: auto !important;
        width: 90% !important;
    }

    .left-field,
    .right-field {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
