@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #022346;
}

.container {
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: center;
    background: url(../Img/imagem\ 2.png);
    background-size: 100px;
}

form {
    display: flex;
    border-radius: 20px;
    padding: 30px;
    background-color: rgb(255, 255, 255, 0.6);
    /* background-blend-mode: darken;  */
    max-height: 600px;
    gap: 20px;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 50%;
}

.form-header {
    width: 50%;
}


input {
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
    outline: none;
    font-size: 20px;
    color: #022346;
    padding: 10px;
}

input::placeholder {
    color: #022346;
}


.form-button {
    width: 50%;

}


button {
    border: none;
    width: 100%;
    border-radius: 20px;
    padding: 10px;
    color: white;
    background-image: url(../img/imagem\ 2.png);
    background-color: blue;
    background-size: 30px;
    cursor: pointer;
    transition: 0.6s;
}

button:hover {
    background-color: white;
    color: red;
    font-weight: bold;
}

.form-icon {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.form-icon a:nth-child(1) {
    color: red;
}

.form-icon a:nth-child(2) {
    color: blue;
}

.form-icon a:nth-child(3) {
    color: black;
}

@media(max-width: 768px){

    form{
        display: flex;
        justify-content: center;
        width: 80%;
    }

    .form-header {
        display: flex;
        justify-content: center;
    }

    #imagem{
        display: none;
    }

    .form-button{
        width: 100%;
    }

    .form-icon{
        font-size: 25px;
    }
}