.login {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    border: 2px solid black;
    border-radius: 6px;
    width: 40%;
    height: auto;
    padding: 5px;
    margin: auto;
    background-color: white;
    box-shadow: 8px 8px 9px black;
}

label {
    display: block;
    margin-bottom: 5px;
}


.forgotten a {
    font-size: 15px;
    text-decoration: none;
    color: blue;
}

.reminder {
    font-size: 15px;
    font-weight: bold;
}

body {
    background-image: linear-gradient(to right, red, purple);
}

.header {
    text-align: center;
    margin-bottom: 10px
}

button {
    border-radius: 4px;
    background-color: red;
    font-size: 15px;
    padding: 5px;
    margin-bottom: 5px;
    transition: transform .5s ease;
}

button:hover {
    transform: scale(1.5);
    
}
    

@media (min-width: 200px) and (max-width: 1000px) {
    .login {
        display: flex;
        flex-direction: column;
        width: 50vw;
        height: auto;
        border: 2px solid black;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 8px 8px 9px black;
        padding: 5px;
        margin: auto;
        font-size: 7vw;
    }

    .header {
        font-size: 7vw;
    }
    label {
        display: block;
    }

    .forgotten a {
        display: block;
        margin-bottom: 5px;
        font-size: 3vw;
    }

    .reminder {
        margin-bottom: 5px;
    }
    button {
        width: 17vw;
        height: 6vh;
        font-size: 60%;
        font-weight: bold;

    }

    button:hover {
    transform: scale(1.5);
    
}

form {
    width: 100%;
}

#username {
    width: 80%;
    height: 3vh;
    font-size: 3vw;
}

#psword {
    width: 80%;
    height: 3vh;
    font-size: 3vw;
}
}