h1 {
    background-color: rgba(100, 50, 210, 0.95);
    color: white;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

body {
    text-align: center;
    color: white;
}

header {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

button {
    width: 100%;
    padding: 9px;
    border-radius: 10px;
    transition: all 0.4s ease;
    color: black;
    background-color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    transform: scale(1.1);
}

label {
    color: white;
}
    
input {
    border-radius: 4px;
}

::placeholder {
    text-align: left;
}

form {
    background-color: rgba(100, 50, 210, 0.95);
    border-radius: 14px;
    display: inline-block;
    
    padding: 30px;
    border-width: 1px;
    border-style: solid;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3), 0 6px 20px 0 rgba(0,0,0,0.21);
    width: 40%;
}

input[type="text"] {
    width: 70%;
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.6);
}

.link {
    color: rgb(0, 0, 0)
}

.link:hover {
    color: rgba(100, 50, 210, 0.95);
}

/* Estilizar links que devem parecer botões (evita sublinhado amarelo) */
.btn-link{
    display: inline-block;
    padding: 10px 12px;
    background: white;
    color: black;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.18s ease, color 0.18s ease;
    margin-left: 8px;
}
.btn-link:hover{
    transform: scale(1.05);
    color: rgba(100, 50, 210, 0.95);
}
.btn-link:focus{
    outline: 2px solid rgba(100,50,210,0.25);
    outline-offset: 2px;
}

/* Centraliza o conteúdo principal das páginas do aluno */
.center-main{ text-align:center; padding-top:48px; }

.situacao { margin-bottom: 8px; color: #fff; font-weight: 600; }

#resultado .card {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    font-size: 1.1rem;
}
