@import url('https://fonts.googleapis.com/css2?family=Gentium+Plus:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    background: #c10c0c;
}

#form {
    position: relative;
    top: 50%;
    bottom: 50%;
    margin-top: 4.2%;
    background: #fff;
    border-radius: 10px;
    padding: 60px;
    width: min-content;
    align-items: center;
    animation: iniciar 1.6s ease-out;
    pointer-events: all;
    margin-top: 11rem;




}

.title {
    font-size: 1.8rem;
    margin-bottom: 10%;
    color: black;
}

.input {
    min-width: 205px;
    border-radius: 22px;
    border: 2px solid #6f7e84;
    margin: 0px 0px 12px -5px;

}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;


}

.input i {
    font-size: 1.2em;
    margin-left: 6px;
    padding: 5px;
    background: -webkit-linear-gradient(#e52d27, #b31217);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

i {
    font-size: 20px
}

select {
    border: 0;
}

.input input {
    width: 80%;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transform: translateY(-10%S);
    color: black;
    font-size: 11pt;
}

.btn {
    margin-top: 10%;
    width: 100%;
    text-align: center;
}

.btn button {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #e52d27, #b31217);
    width: 100%;
    height: 40px;
    border: none;
    font-size: 1.2em;
    color: white;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    transition: transform 200ms ease-in-out;
}

.btn button:hover {
    transform: scale(1.05);
}


.button-card {

    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 60px;
    cursor: pointer
}

#button2 img {
    height: 2.5rem;
    position: relative;
    bottom: 0.8rem;
    right: 3rem;
    margin-bottom: 5rem;

}

@media(max-width: 768px) {
    body {
        background: white;
    }

    #button2 img {
        height: 2.5rem;
        position: relative;
        bottom: 5rem;
        right: 3rem;


    }
}

@keyframes iniciar {
    0% {
        top: -20%;
        opacity: 0;
        pointer-events: none;
    }

    100% {
        top: 50%;
        opacity: 100%;
        pointer-events: none;
    }
}