@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.4rem;
    background: #fff;
    border-radius: 10px;
    padding: 60px;
    width: min-content;
    align-items: center;
    animation: iniciar 1.6s ease-out;
    pointer-events: all;
    z-index: 0;




}

.title {
    font-size: 1.8rem;
    margin-bottom: 10%;
    color: black;
}

.input {
    min-width: 280px;
    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 input {
    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 input:hover {
    transform: scale(1.05);
}

#button2 img {
    height: 2.5rem;
    position: relative;
    bottom: 1.7rem;
    right: 3rem;

}

.button-card {

    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    cursor: pointer;
}



#button2:hover {
    transform: scale(1.05);
}

@media(max-width: 768px) {
    #button2 img {
        height: 2rem;
        position: relative;
        bottom: 5rem;
        left: -3rem;


    }

    #form {
        position: relative;
        top: 50%;
        bottom: 50%;
        margin-top: 5rem;
        background: #fff;
        border-radius: 10px;
        padding: 60px;
        width: min-content;
        align-items: center;
        animation: iniciar 1.6s ease-out;
        pointer-events: all;
        z-index: 0;
        bottom: 4rem;
    }

    body {
        background: white;
    }

    @keyframes iniciar {
        0% {
            top: -20%;
            opacity: 0;
            pointer-events: none;
        }

        100% {
            top: 50%;
            opacity: 100%;
            pointer-events: none;
        }
    }

}