/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

h1 {
    color: #4b4b4b;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: bold;
    color: #333;
}

.form-check-label {
    color: #555;
}

.btn-primary {
    background-color: #1d72b8;
    border: none;
}

.btn-primary:hover {
    background-color: #155a8a;
}

/* Custom input styling */
.custom-input {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    padding-left: 25px; /* Espaço para o número romano */
    position: relative;
}

.custom-input:focus {
    outline: none;
    border-bottom: 2px solid #1d72b8;
}

.custom-placeholder {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}
