* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: #f8fafc;
}

.app-container {
    display: flex;
    min-height: 100vh;
}

.login-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #f8fafc;
}

.login-box {
    width: 100%;
    max-width: 440px;

    background: #fff;
    padding: 42px;

    border-radius: 28px;

    border: 1px solid #edf2f7;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05),
        0 1px 4px rgba(0, 0, 0, .03);
}

.brand {
    margin-bottom: 24px;
}

.brand h1 {
    font-family:'Outfit',sans-serif;
    font-size:36px;
    font-weight:800;
    letter-spacing:-1px;
    background: linear-gradient(
        360deg,
        #25e5eb,
        #215ea8
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.welcome-text {
    margin-top: 8px;
    color: #64748b;
    font-size: 15px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    background: #ecfdf5;
    color: #065f46;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #334155;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #94a3b8;
}

.input-wrapper input {
    width: 100%;

    padding: 14px 16px 14px 46px;

    border-radius: 14px;
    border: 2px solid #e2e8f0;

    background: #f8fafc;

    font-size: 15px;

    transition: .2s;
}

.input-wrapper input:focus {
    outline: none;

    background: white;

    border-color: #2563eb;

    box-shadow: 0 0 0 5px rgba(37, 99, 235, .10);
}

.form-utilities {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.forgot-password {
    text-decoration: none;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;

    border: none;

    padding: 15px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color: white;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;

    box-shadow:
        0 10px 25px rgba(37, 99, 235, .25);
}

.btn-login:hover {
    transform: translateY(-2px);
}

.btn-login i {
    margin-right: 8px;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    background: #fff5f5;
    color: #dc2626;
    border: 1px solid #fecaca;
    font-size: 14px;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    font-size: 14px;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    color: #94a3b8;
    font-size: 13px;
}

.banner-side {
    flex: 1.2;

    display: flex;
    align-items: center;

    padding: 80px;

    color: white;

    position: relative;

    background:
        radial-gradient(
            circle at top right,
            rgba(59,130,246,.30),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(92, 131, 216, 0.2),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0a0d13,
            #0a2c63
        );

    overflow: hidden;
}

.banner-quote {
    margin: 25px 0 0 0;
    padding-left: 18px;
    border-left: 3px solid rgba(255, 255, 255, 0.32);
    position: relative;
}

/* Estilo do texto interno */
.banner-quote p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.banner-side::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,.10) 1px,
            transparent 1px
        );

    background-size: 30px 30px;

    opacity: .3;
}

.banner-content {
    margin-top: -80px;
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.banner-badge {
    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(8px);

    font-size: 13px;
}

.banner-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    justify-content: flex-start;
}

.banner-image {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-top: 30px;
    margin-left: 0;
    margin-right: auto;

    filter: drop-shadow(
        0 20px 40px rgba(0,0,0,.25)
    );
}

.tag {
    background: rgba(255,255,255,.10);

    backdrop-filter: blur(8px);

    padding: 10px 16px;

    border-radius: 999px;

    font-size: 14px;
}

.stats {
    display: flex;
    gap: 50px;

    margin-top: 50px;
}

.stat-item strong {
    display: block;

    font-size: 32px;
    font-weight: 800;
}

.stat-item span {
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 1000px) {

    .banner-side {
        display: none;
    }

    .login-side {
        width: 100%;
    }

    .login-box {
        max-width: 500px;
    }
}