* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #9b6dff, #7f5af0);   
     display: flex;
}



.container {
    overflow: hidden;
    margin: auto;
    display: flex;
    min-height: 80vh;
    border-radius: 20px;
}

.left {
    border-radius: 20px 0 0 20px;
}

.right {
    border-radius: 0 20px 20px 0;
}

/* LADO ESQUERDO */

.left {
    flex: 1;
    background: #16181d;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 350px;
}

.login-box h1 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.login-box p {
    color: #888;
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.password {
    position: relative;
}

.password .eye {
    position: absolute;
    right: 0;
    top: 12px;
    color: #777;
    cursor: pointer;
}

.forgot {
    display: block;
    text-align: right;
    color: #888;
    font-size: 13px;
    margin-bottom: 30px;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #9b6dff, #7f5af0);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
}

.signup {
    margin-top: 60px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.signup a {
    margin-left: 10px;
    padding: 6px 12px;
    background: #2a2d35;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

/* LADO DIREITO */

.right {
    flex: 1;
    background: linear-gradient(135deg, #8f5de8, #6d4ddc);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.welcome-content {
    color: #fff;
    max-width: 400px;
}

.welcome-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-content span {
    font-weight: 300;
}

.welcome-content p {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.imgLogo {
    margin-top: 25px;
    width: 400px;
    margin-bottom: 30px;
}

/* RESPONSIVIDADE */

@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .right {
        order: -1;
        min-height: 300px;
        text-align: center;
    }

    .welcome-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .imgLogo {
        width: 300px;
        margin-bottom: 30px;
    }
}

@media (max-width: 356px) {
    .imgLogo {
        width: 250px;
        margin-bottom: 30px;
    }
}

