:root {
    --verde: #CEFF00;
    --preto: #1a1a1a;
    --branco: #FFFFFF;
    --fundo: #f4f5f7;
    --cinza-claro: #e0e0e0;
    --cinza-texto: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--fundo);
    color: var(--preto);
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.input-group input,
.input-group input[type="date"],
.input-group input[type="email"],
.input-group input[type="password"],
.input-group input[type="text"],
.input-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

button {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.error {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--branco);
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
    }

    to {
        transform: translateY(0);
    }
}

.modal-content h2 {
    margin-bottom: 25px;
}

.modal-content button[type="submit"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background-color: var(--verde);
    color: var(--preto);
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.modal-content button[type="submit"]:hover {
    background-color: #b8e600;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
}