body {
    height: 100dvh; 
    background-image: url("fondoCMD.png");
    background-size: cover;        /* la imagen se estira para cubrir todo */
    background-repeat: no-repeat;  /* evita que se repita como mosaico loco */
    background-attachment: fixed;  /* la imagen queda quieta mientras deslizas */
}

button {
    font-weight: 600;
    font-size: 1.5rem;
    color: #491a1b;
    background-color: #f8d7a3;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 3rem;
    cursor: pointer;
    margin-top: 2rem;
}

input {

    font-weight: 300;
    font-size: 1.5rem;
    padding: 0.5rem;
    border: 2px solid #491a1b;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
}

.formStyle {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.MainContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8d7a3;
}

.SecondaryContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    background-color: #f8d7a3;
}

.top {
    position: absolute;
    align-items: center;
    margin-bottom: 2rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.middle {
    font-family: "Outfit", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom {
    font-family: "Outfit", sans-serif;
    display: flex;
    justify-content: center;
    
}

.title {
    font-family: "Luckiest Guy", serif;
    font-size: 7rem;
    color: #f8d7a3;
    text-align: center;
}

.subtitle {
    font-family: "Luckiest Guy", serif;
    font-size: 6rem;
    margin-top: -5rem;
    margin-bottom: 3rem;
    color: #f8d7a3;
    text-align: center;
}

.subsubtitle {
    font-family: "Luckiest Guy", serif;
    font-size: 2rem;
    margin-top: -2rem;
    margin-bottom: 1rem;
    color: #f8d7a3;
    text-align: center;
}

.text {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 2rem;
    color: #f8d7a3;
    text-align: center;
}

.hDiv {
    display: flex;
    gap: 2rem;
}

.bigButton {
    font-size: 2rem;
    padding: 10rem 7rem;
    border-radius: 2rem;
    margin-bottom: 3rem;
}