*⁠  ⁠{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(237, 247, 248, 0.971);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-content {
    background: url(Brizc.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    width: 1000px;
    border-radius: 25px;
}

.form-content h2 {
    color: #f4f6f9;
    font-size: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Añadir sombra al texto */
}

form {
    display: flex;
    flex-direction: column;
    width: 50%;
}

label {
    font-size: 17px;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Añadir sombra al texto */
}

input, textarea {
    padding: 17px 14px;
    background-color: #54afefd4;
    border: 0;
    font-size: 15px;
    color: white;
    margin-bottom: 20px;
    border-radius: 10px;
}

input:focus, textarea:focus {
    outline: 1px solid rgb(247, 247, 247);
}

.btn {
    background-color: #54afefd4;
    width: 120px;
    height: 50px;
    align-self: flex-end;
    cursor: pointer;
    border-radius: 25px;
    color: white;
    font-size: medium;
}

.btn:hover {
    background-color: #54afefd4;;
}

@media (max-width: 991px) {
    body {
        padding: 30px;
    }

    .form-content {
        width: 100%;
    }

    form {
        width: 100%;
    }
}


/*.redirect {
    background-color: #54afefd4;
    cursor: pointer;
    width: 520px;
    height: 200px;
    text-decoration: none;
} */

