@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* Estilo global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('../imagens/bgmeu.png');
    color: #333;
}

/* Container principal */
.container {
    /* background-color: #333333; */
    background-image: url('../imagens/bgmeu-escuro.png');
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    margin: 10px;
    border-bottom: 5px solid #FF323D;
}

.header {
    display: flex;
}

.header a {
    background-color: #FF323D;
    padding: 10px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
}

/* Estilo do logotipo */
.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

/* Estilo do título */
h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.form-group {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.form-group i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Para não interferir na funcionalidade do input */
    color: #525252;
}

/* Input e botão */
input {
    font-size: 15px;
    width: 100%;
    padding: 10px;
    border-radius: 20px 10px 10px 20px;
    background-color: #E6E6E6;
    outline: none;
    border: none;
    color: #535353;
    padding: 12px 50px;
    border: 1px solid #E6E6E6;
}

/* Estilo da borda vermelha em caso de erro */
.input-erro {
    border: 1px solid #d32f2f;
}

/* Botão principal */
button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background-color: #FF323D;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover {
    background: #ff1818;
}

/* Mensagem de erro */
.error {
    color: #d32f2f;
    margin-top: 15px;
    display: none;
}

/* Texto de ajuda */
.help-text {
    margin-top: 5px;
    font-size: 14px;
    color: #ffffff;
}

/* Botão de Suporte */
.btn-pequeno {
    text-transform: uppercase;
    width: 100%;
    font-family: "Poppins", sans-serif;
    background-color: #e0e0e0;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    /* text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.342); */
    color: #3d3d3d;
}

.btn-pequeno:hover {
    background: #adadad;
}

.cadastro-area {
    display: flex;
    flex-direction: column;
    /* background-color: #2bb900; */
    margin-top: 10px;
}

.cadastro-area p {
    color: white;
}

.cadastro-area a {
    color: #FF323D;
    text-decoration: none;
}


/* Responsividade */
@media (max-width: 500px) {
    .container {
        padding: 30px 20px;
}
input, button, .support-button {
    font-size: 14px;
}
}