* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
}

body {
    background-image: url("img/cardelinasFondo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5em;
    color: white;
    z-index: 10;
    filter: opacity(0px);
    background-color: #323f54;
    position: relative;
    margin: auto;
    top: 30%;
    bottom: 2em;
    max-width: 60%;
    width: fit-content;
    padding: 2em;
    border-radius: 20px;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    z-index: 0;
    height: max-content;
}

input,
button {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 6px;
    padding: 1em;
}

input:hover {
    filter: opacity(90%);
}

label {
    text-transform: uppercase;
    font-weight: bold;
}

p {
    text-align: center;
}

img {
    max-width: 350px;
    filter: grayscale() brightness(1000%);
}

.synofoto-lightbox-toolbar {
	display: none;
}

@media only screen and (min-width: 1280px) {
    form {
        position: absolute;
        right: 20%;
        top: 33%;
        margin: 0;
        min-height: max-content;
    }
}