/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Font ===== */
body, input, button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Limiter ===== */
.limiter {
    width: 100%;
    margin: 0 auto;
}

/* ===== Container ===== */
.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: flex;
}

/* ===== Wrap — full page, no card ===== */
.wrap-login100 {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    display: flex;
    flex-wrap: nowrap;
}

/* ===== Form Side — 40% ===== */
.login100-form {
    width: 40%;
    min-height: 100vh;
    padding: 0 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== Title ===== */
.login100-form-title {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    text-align: center;
}

.login100-form-subtitle {
    display: block;
    font-size: 14px;
    color: #999;
    text-align: center;
}

/* ===== Input Wrapper ===== */
.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 30px;
}

/* ===== Input ===== */
.input100 {
    font-size: 15px;
    color: #555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px;
    border: none;
    outline: none;
}

/* ===== Label ===== */
.label-input100 {
    font-size: 14px;
    color: #999;
    line-height: 1.2;
    display: block;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 13px;
    transition: all 0.3s ease;
}

/* ===== Label on focus / has value ===== */
.input100:focus + .focus-input100 + .label-input100,
.wrap-input100.has-val .label-input100 {
    top: -12px;
    font-size: 12px;
    color: #4e54c8;
}

/* ===== Focus Line ===== */
.focus-input100 {
    position: absolute;
    display: block;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    transition: all 0.4s ease;
}

.input100:focus + .focus-input100,
.wrap-input100.has-val .focus-input100 {
    width: 100%;
}

/* ===== Button Container ===== */
.container-login100-form-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

/* ===== Button ===== */
.login100-form-btn {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(78, 84, 200, 0.4);
}

.login100-form-btn:hover {
    background: linear-gradient(135deg, #3d43a8, #7a7fe6);
    box-shadow: 0 8px 25px rgba(78, 84, 200, 0.5);
    transform: translateY(-1px);
}

.login100-form-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 15px rgba(78, 84, 200, 0.4);
}

/* ===== Image Side — 60% ===== */
.login100-more {
    width: 60%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.login100-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.3), rgba(143, 148, 251, 0.1));
}

/* ===== Alert Overrides ===== */
.login100-form .alert {
    font-size: 13px;
    border-radius: 8px;
    padding: 10px 15px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .wrap-login100 {
        flex-wrap: wrap;
    }

    .login100-form {
        width: 100%;
        min-height: auto;
        padding: 50px 40px;
    }

    .login100-more {
        width: 100%;
        min-height: 250px;
        order: -1;
    }
}

@media (max-width: 576px) {
    .login100-form {
        padding: 40px 25px;
    }

    .login100-form-title {
        font-size: 24px;
    }
}
