body, html {
    margin: 0;
    padding: 0;
    font-family: 'Baloo 2', 'Comic Neue', sans-serif;
    height: 100%;
    overflow: hidden;
}

.fondo {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #0b1a3d, #000033);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.form-container {
    z-index: 1;
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

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

input {
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
}

.boton {
    padding: 15px;
    background: #00bfff;
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.boton:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
}

p {
    margin-top: 20px;
    font-size: 0.9rem;
}

p a {
    color: #00bfff;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}