body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #0d1c8f, #2434d4);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Container {
    width: 500px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0, 0, 0, 0.25);
    overflow: hidden;
    text-align: center;
}

.Header {
    background: #ffffff;
    padding: 30px;
    background: linear-gradient(180deg, #f7b733, #f7a71e);
    color: #08306b;
}

.Logo {
    width: 200px;
    margin-top: 10px;
}

.Formulario {
    padding: 20px 35px;
    text-align: left;
    text-align: center;
    color: #08306b;
}

.Formulario h3 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
}

label {
    font-weight: bold;
    font-size: 14px;
}

input {
    width: 100;
    padding: 10px;
    margin: 8px 0 18px 0;
    border-radius: 6px;
    border: 1px solid #cccccc;
    font-size: 15px;
    text-align: center;
}

button {
    width: 100%;
    padding: 15px;
    background: #F8B42D;
    color: #02007c;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

button:hover {
    background: #fff6e3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px, rgba(26, 41, 128, 0.2);
}

footer {
    margin-top: 30px;
    text-align: center;
    color: #777777;
    font-size: 0.85rem;
    line-height: 1.5;
}