* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1c1c1c; /* Fundo escuro */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: rgba(46, 46, 46, 0.9); /* Fundo escuro com transparência */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 400px;
}

.cartorio-logo {
    max-width: 100%;
    margin-bottom: 20px;
    background-color: rgba(28, 28, 28, 0.7); /* Adiciona uma camada de fundo escuro por trás da imagem */
    padding: 10px;
    border-radius: 8px;
}

h1 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff; /* Cor do texto */
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #ccc; /* Cor do texto */
}

input[type="number"],
input[type="url"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #555; /* Cor da borda */
    border-radius: 4px;
    font-size: 16px;
    background-color: #444; /* Fundo do input */
    color: #fff; /* Cor do texto do input */
}

button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.error-message {
    margin-top: 20px;
    color: #d9534f;
    font-weight: bold;
}

.success-message {
    margin-top: 20px;
    color: #28a745;
    font-weight: bold;
}
