@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
body {
    background-image: url("Wall.jpg");
    font-family: "montserrat";
    background-size: cover;
}
.container {
    display: flex;
    margin: 150px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.container-main {
    display: grid;
    place-content: center;
}

.img-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: auto;
}
.img-container > img {
    text-align: center;

    width: 250px;
    height: auto;
}

.parrafo {
    /* overflow-wrap: break-word; */

    text-align: center;
}
.wrap-input {
    border-radius: 5px;
    padding: 30px;

    background-color: #0070b8;

    width: clamp(220px, 500px, 60%);
}
.form {
    display: flex;
    justify-content: center;
    flex-direction: column;

    align-items: center;
    width: 100%;
}
.form > div > input {
    display: block;
    width: clamp(227px, 100%, 100%);
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;

    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;

    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form > div > input:focus {
    outline: none;
    border: none;
}
.form > div {
    margin: 0px 0px 20px 0px;
}

.form > button {
    background-color: #e96c19;
    border: none;
    color: #fff;
    display: inline-block;
    font-weight: 400;

    text-align: center;
    vertical-align: middle;
    cursor: pointer;

    padding: 10px 30px;

    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    /* transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; */
}
.form > button:hover {
    background-color: #00a9ec;
    border: none;
}

@keyframes erroranimacion {
    from {
        font-size: 1.3rem;
    }
    to {
        font-size: 1rem;
    }
}
.Error {
    color: rgb(48, 8, 8);
    font-weight: 700;
    text-align: center !important;
    animation-name: erroranimacion;
    animation-duration: 5s;
}

@media only screen and (max-width: 768px) {
    body {
        background-image: url("Wall.jpg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        /* height: 100vh; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
