body {
    font-family: 'Roboto', sans-serif;
    background-color: #2c2c3e;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #2c2c3e;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}



.autor{
	max-width: 800px;
	margin: 0 auto;
    padding: 20px;
	font-size: 12px;
	color:white;
}





h1, h2 {
    color: #00d4ff;
    text-align: center;
    margin-bottom: 20px;
}







form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 14px;
    color: #aaa;
}

input, select, button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    outline: none;
}

input, select {
    background-color: #3c3c4e;
    color: #fff;
    border: 1px solid #555;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    border-color: #00d4ff;
}

button {
    background-color: #00d4ff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #00a3cc;
}

a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #00a3cc;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
}

th, td {
    padding: 10px;
    border: 1px solid #555;
    text-align: left;
}

th {
    background-color: #3c3c4e;
}

td {
    background-color: #2c2c3e;
}

thead {
    background-color: #00d4ff;
    color: #fff;
}
