*,
*::after,
*::before {
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #fff;
    margin: 0;
    height: 100vh;
    font-family: 'Satoshi', sans-serif;

}

main{
    max-width: 300px;
}


h1{
    font-size: 3rem;
    margin: 0;
}

p{
    color: #aaa;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 48px;
   
}

form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    font-family: 'Satoshi', sans-serif;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    border-radius: 5px;
    background-color: #000000;
    font-size: 1rem;
    color: #fff;
    
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #777;

}

input[type="text"]:hover,
input[type="password"]:hover {
    background-color:  #242424;

}

label{
    font-size: 1.1rem;

}

.err{
    margin: 0;
}

.lmdp{
    margin-top: 20px;
}

.btn{
    padding: 10px;
    background-color: #fff;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 48px;
    font-family: 'Satoshi', sans-serif;
    font-weight: bold;

}

.btn:hover{
    background-color: #9e9e9e;

}


.mdp-oublie{
    font-size: 1rem;
    text-align: center;
    color: #9e9e9e;
    cursor: pointer;
}

.mdp-oublie:hover{
   color: #777;
}

@media (width>=600px) {
    main {
        margin: 0 auto;
        max-width: 500px;
    }

}