/*//////////////////////////////////////////////////////////////////
[ LOGIN ]
*/

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    background: linear-gradient(
        135deg,
        #0f172a 0%,
        #1e293b 40%,
        #2563eb 100%
    );

    position: relative;
    overflow: hidden;
}

.container-login100::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
}

.wrap-login100 {
    width: 460px;
    position: relative;
    z-index: 10;

    padding: 50px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(37, 99, 235, 0.2);

    transition: all .3s ease;
}

.wrap-login100:hover {
    transform: translateY(-4px);
}

/*------------------------------------------------------------------
[ FORM ]
*/

.login100-form {
    width: 100%;
}

.login100-form-logo {
    width: 110px;
    height: 110px;

    margin: 0 auto 25px auto;

    border-radius: 50%;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 50px;
    color: #2563eb;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.login100-form-title {
    display: block;

    text-align: center;

    font-family: Poppins-Bold;
    font-size: 30px;

    color: #ffffff;

    margin-bottom: 40px;

    letter-spacing: 1px;
}

/*------------------------------------------------------------------
[ INPUT ]
*/

.wrap-input100 {
    width: 100%;
    position: relative;

    margin-bottom: 20px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.08);

    transition: all .3s ease;
}

.wrap-input100:focus-within {
    border-color: #60a5fa;
    background: rgba(255,255,255,.15);

    box-shadow:
        0 0 0 4px rgba(96,165,250,.20);
}

.input100 {
    width: 100%;
    height: 55px;

    background: transparent;

    padding: 0 20px 0 50px;

    color: #ffffff;

    font-size: 15px;
}

.input100::placeholder {
    color: rgba(255,255,255,.7);
}

.focus-input100 {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.focus-input100::before {
    display: none;
}

.focus-input100::after {
    font-family: Material-Design-Iconic-Font;
    color: rgba(255,255,255,.8);
    font-size: 20px;
}

/*------------------------------------------------------------------
[ CHECKBOX ]
*/

.contact100-form-checkbox {
    padding-top: 10px;
    padding-bottom: 25px;
}

.label-checkbox100 {
    color: rgba(255,255,255,.85);
}

.label-checkbox100::before {
    border-radius: 4px;
}

/*------------------------------------------------------------------
[ BUTTON ]
*/

.container-login100-form-btn {
    width: 100%;
}

.login100-form-btn {
    width: 100%;
    height: 55px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #3b82f6,
        #2563eb
    );

    color: #ffffff;

    font-family: Poppins-SemiBold;
    font-size: 15px;

    transition: all .3s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login100-form-btn::before {
    display: none;
}

.login100-form-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(37,99,235,.40);
}

/*------------------------------------------------------------------
[ LINKS ]
*/

.txt1 {
    color: rgba(255,255,255,.85);
}

a {
    color: rgba(255,255,255,.85);
}

a:hover {
    color: #ffffff;
}

/*------------------------------------------------------------------
[ RESPONSIVE ]
*/

@media (max-width: 576px) {

    .wrap-login100 {
        width: 100%;
        padding: 35px 25px;
        border-radius: 18px;
    }

    .login100-form-title {
        font-size: 24px;
    }

    .login100-form-logo {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }
}