/* Estilo do corpo */
body {
    font-family: 'Arial', sans-serif;
    background-image: url('https://logosemaster.s3.sa-east-1.amazonaws.com/backgroud-image-schedulersite.png'); /* Substitua pelo caminho da sua imagem de fundo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #fff;
}

/* Contêiner principal do formulário */
.form-container {
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h2 {
    color: #fff;
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

input {
    width: 376px;
    padding: 10px;
    margin: 10px 0 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

#responseMessage {
    margin-top: 20px;
    font-size: 16px;
}

/* Estilo para a mensagem de erro/sucesso */
.success {
    color: #28a745;
}

.error {
    color: #dc3545;
}
