body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1d1d1d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.x-telegram {
    background-color: #FF0000; /* Laranja do botão "Post" */
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.x-telegram:hover {
    background-color: #0088cc; /* Azul do hover */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
}

.content-wrapper {
    display: flex;
    width: 80%;
    max-width: 1200px;
    justify-content: center; 
    padding: 20px;
    gap: 20px;
}

.twitter-container {
    background-color: #000;
    padding: 60px;
    border-radius: 10px;
    width: 30%;
    height: 40%;
    margin-left: -10%; 
}

.form-container {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 40%;
    text-align: center;
    transition: transform 0.2s;
    align-self: center; 
}

.twitter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.twitter-inline {
    display: flex;
    align-items: center;
}

.twitter-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.twitter-text h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.twitter-buttons {
    display: flex;
    gap: 10px;
}

.x-back, .x-drafts, .x-post {
    background-color: #000;
    border: none;
    color: #FF0000;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 50px;
}

.x-post {
    background-color: #FF0000;
    color: #fff;
}

.form-container:hover {
    transform: translateY(-5px);
}

.register-embed img {
    width: 235px;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.login-embed img {
    width: 235px;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.form-container h2 {
    margin-bottom: 20px;
    color: #FF0000;
}

.form-container input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-container button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #FF0000;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.form-container button:hover {
    background-color: #0088cc;
}

.captcha-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.captcha-container img {
    width: 150px;
    height: auto;
    margin-right: 10px;
}

.captcha-container #reroll {
    width: 50px;
    height: 50px;
    background-color: #FF0000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}

.captcha-container #reroll:hover {
    background-color: #0088cc;
}

.form-container p {
    margin-top: 15px;
    color: #aaa;
}

.form-container a {
    color: #FF0000;
    text-decoration: none;
}

.form-container a:hover {
    text-decoration: underline;
}

button {
    background-color: #00bfff;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1b1f3b;
    color: #fff;
}

@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .twitter-container, .form-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .captcha-container img {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .form-container h2 {
        font-size: 24px;
    }

    .form-container input, .form-container button {
        font-size: 14px;
    }

    .captcha-container #reroll {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-container input {
        padding: 8px;
    }

    .form-container button {
        padding: 8px;
    }

    .captcha-container img {
        width: 100px;
    }

    .captcha-container #reroll {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .x-back, .x-drafts, .x-post {
        font-size: 14px;
        padding: 6px 10px;
    }

    .twitter-avatar {
        width: 40px;
        height: 40px;
    }
}
