/* ============================
   CONTAINER PRINCIPAL
   ============================ */

.registo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #003366, #009739);
    padding: 20px;
}

/* ============================
   CARD DE REGISTO
   ============================ */

.registo-card {
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    text-align: center;
}

/* Título */
.registo-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 10px;
}

/* Subtítulo */
.registo-card p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 30px;
}

/* ============================
   CAMPOS DE INPUT
   ============================ */

.registo-card input,
.registo-card select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    background: #f3f4f6;
    font-size: 15px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
}

/* ============================
   BOTÃO DE REGISTO
   ============================ */

.btn-registo {
    width: 100%;
    padding: 14px;
    background: #009739;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-registo:hover {
    background: #00b34a;
}

/* ============================
   LINK PARA LOGIN
   ============================ */

.link-login {
    display: block;
    margin-top: 20px;
    color: #003366;
    font-weight: 600;
    text-decoration: none;
}

.link-login:hover {
    text-decoration: underline;
}

/* ============================
   RESPONSIVO
   ============================ */

@media (max-width: 480px) {
    .registo-card {
        padding: 30px;
    }

    .registo-card h2 {
        font-size: 24px;
    }
}
