body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: clamp(20px,90%,500px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 5px 5px 15px lightgrey;
    margin: 10px;
    padding: 15px;
    gap: 5px;
}
 {
    outline: 0.5px dotted green;
}
.image, .image img {
    width: 150px;
}

.form-container {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    
}

.form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;;
}
.form-container input{
    width: 100%;
    
}

.form-container input:not(input[type=submit]) {
    border: 1px solid lightgrey;
    padding: 10px;
    margin: 5px 0px;
    border-radius: 5px;
    font-size: 18px;
    height: 40px;
}



.form-container input:focus {
    outline: 2px solid #002060 !important;

}

a {
    text-decoration: none;
    color: black;
    margin: 5px;
    margin-bottom: 10px;
}

a:hover {
    color: rgb(73, 73, 73);
}
