* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: 'Nunito', Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../media/images/connexion.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

.card {
    grid-column: 2;
    grid-row: 2;
    height: 300px;
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.904);
    position: relative;
}


header {
    margin-top: 60px;
}

img {
    width: 150px;
}

input {
    border-bottom: 2px solid #707070;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    padding-left: 10px;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.0);
}


button {
    margin-bottom: 25px;
    width: 200px;
    outline: none;
    height: 35px;
    border: 3px solid #707070;
    font-size: 18px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
}