body {
    margin          : 0;
    padding         : 0;
    background-color: #0b1f4d;
    /* Azul institucional */
    font-family     : 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.registro-page {
    display        : flex;
    flex-direction : column;
    align-items    : center;
    justify-content: center;
    min-height     : 100vh;
    text-align     : center;
    color          : #ffffff;
}

.registro-page img {
    margin-bottom: 20px;
    filter       : drop-shadow(0 0 5px #ffffff);
}

h1 {
    font-size     : 36px;
    margin-bottom : 10px;
    color         : #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

form {
    background-color: #ffffff;
    color           : #0b1f4d;
    padding         : 30px;
    border-radius   : 10px;
    box-shadow      : 0 0 12px rgba(0, 0, 0, 0.4);
    width           : 90%;
    max-width       : 600px;
    text-align      : left;
}

label {
    font-weight: bold;
    margin-top : 15px;
    display    : block;
}

input {
    width        : 100%;
    padding      : 10px;
    margin-top   : 5px;
    border       : 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top      : 20px;
    padding         : 10px 30px;
    background-color: #00a859;
    /* Verde del corazón */
    color           : #ffffff;
    border          : none;
    border-radius   : 5px;
    font-weight     : bold;
    text-transform  : uppercase;
    box-shadow      : 2px 2px 8px rgba(0, 0, 0, 0.4);
    cursor          : pointer;
}

button:hover {
    background-color: #00914a;
}

.link {
    margin-top     : 20px;
    display        : inline-block;
    color          : #ffffff;
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    form {
        padding  : 20px;
        font-size: 14px;
    }

    button {
        padding  : 8px 20px;
        font-size: 14px;
    }
}
