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

body {
    font-family: Arial, sans-serif;
    background-color: #000000; /* Preto */
    color: #ffffff; /* Branco */
}

.container {
    display: flex;
    height: 100vh;
}

.left-section {
    background-color: #000000; /* Preto */
    color: #ffffff; /* Branco */
    width: 50%;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.logo-image {
    max-width: 220px !important;
    margin-right: 20px;
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff; /* Branco */
}

.logo h1 span {
    color: #F9AF36; /* Ouro */
}

.promo-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff; /* Branco */
}

.promo-text h2 span {
    color: #F9AF36; /* Ouro */
}

.promo-text p {
    font-size: 18px;
    color: #ffffff; /* Branco */
}

.right-section {
    width: 50%;
    background-color: #000000; /* Preto */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background-color: #000000; /* Preto */
}

.login-box h2 {
    font-size: 24px;
    color: #ffffff; /* Branco */
    margin-bottom: 20px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #ffffff; /* Branco */
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #333333; /* Cinza escuro */
    border-radius: 5px;
    background-color: #000000; /* Preto */
    color: #ffffff; /* Branco */
}

.input-group input::placeholder {
    color: #cccccc; /* Cinza claro para placeholder */
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #F9AF36; /* Ouro */
    font-size: 14px;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #F9AF36; /* Ouro */
    color: #000000; /* Preto */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.logo-image {
    max-width: 100px;
    margin-bottom: 20px;
}

.btn-login:hover {
    background-color: #E89C20; /* Ouro mais escuro no hover */
}

.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link p {
    color: #ffffff; /* Branco */
}

.register-link a {
    color: #F9AF36; /* Ouro */
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-section {
        width: 100%;
        padding: 50px;
        text-align: center;
    }

    .logo h1 {
        font-size: 36px;
    }

    .promo-text h2 {
        font-size: 28px;
    }

    .promo-text p {
        font-size: 16px;
    }

    .right-section {
        width: 100%;
        padding: 20px;
    }

    .login-box {
        width: 100%;
        padding: 20px;
    }

    .login-box h2 {
        font-size: 20px;
    }

    .input-group input {
        font-size: 14px;
    }

    .forgot-password {
        text-align: left;
    }

    .btn-login {
        font-size: 14px;
        padding: 10px;
    }

    .register-link {
        margin-top: 15px;
    }

    .register-link a {
        font-size: 14px;
    }
}