@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #864ddf;
    --secondary: #203376;
    --accent: #feb543;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-color: #ffffff;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(-45deg, #203376, #864ddf, #feb543, #203376);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.wrap-login100 {
    width: 900px;
    background: var(--glass-bg);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 80px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
}

.login100-pic {
    width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login100-pic img {
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transform-style: preserve-3d;
}

.login100-form {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login100-form-title {
    font-size: 36px;
    color: var(--text-color);
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 40px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 25px;
}

.input100 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    height: 55px;
    border-radius: 27px;
    padding: 0 30px 0 68px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

.input100::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input100:focus {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
    outline: none;
}

.symbol-input100 {
    font-size: 18px;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 35px;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
    color: var(--primary);
    padding-left: 28px;
}

.container-login100-form-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
}

.login100-form-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 55px;
    border-radius: 27px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(134, 77, 223, 0.3);
}

.login100-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(134, 77, 223, 0.5);
    background: linear-gradient(to right, var(--secondary), var(--primary));
}

.text-center {
    text-align: center;
}

.p-t-12 { padding-top: 12px; }
.p-t-136 { padding-top: 50px; }

.txt1 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.txt2 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: 600;
}

.txt2:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(254, 181, 67, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .wrap-login100 {
        padding: 50px 40px;
    }
    .login100-pic {
        width: 35%;
    }
    .login100-form {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .wrap-login100 {
        padding: 50px 30px;
    }
    .login100-pic {
        display: none;
    }
    .login100-form {
        width: 100%;
    }
}
