body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    padding: 20px;
    width: 90%;
    position: absolute;
    top: 5%;
}

h1 {
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #e35219;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #e35219;
}

#mensagem {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    display: none;
    text-align: center;
    color: #333;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 10%;
    height: auto;
    border-radius: 5px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    white-space: pre-line; /* Adiciona a propriedade 'white-space' */
}

/* Estilo do modal */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 80%;
    max-width: 400px;
}

.informacoes {
    font-size: 20px;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.descartar {
    margin-top: 10px;
}

.marcar-lido{

}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 20px;
        width: 90%;
        position: absolute;
        top: 5%;
    }

    .logo-container img {
        max-width: 30%;
        height: auto;
        border-radius: 5px;
    }
}
