html, body, h1 {
    margin: 0;
    padding: 0;
    
}

body {
    box-sizing: border-box;
}
/*-------------------------------------------*/
/* Login */

.login_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 250px;
    align-items: center;
    background-color: rgb(249, 249, 249);
    padding: 1rem;
    border-radius: 25px;
    height: 350px;
    box-shadow: 0px 0px 10px rgba(14, 14, 14, 0.553);
}

form>button {
    width: 150px;
    padding: 0.3rem;
    border: none;
    background-color: rgb(27, 48, 92);
    color: white;
    border-radius: 5px;
    cursor: pointer;

}

form>input {
    width: 80%;
    padding: 0.3rem;
    border: none;
    border-bottom: 1px solid black;
    background-color: transparent;
}

form>input:focus {
    outline: none;
    border-bottom: 2px solid rgb(220, 30, 30);
}