@font-face {
    font-family: "Inter";
    src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf) format('truetype');
}

body {
    box-sizing: border-box;
    
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    font-family: 'Inter';   
}

.main {
    background: url('/media/background.svg');
    background-size: cover;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-wrapper {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    width: 100%;

}
#login-form {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    justify-content: center;
    align-items: center;
    height:fit-content;
    background-color: white;
}

#login-form img {
    height: 100px;
    margin: 20px 0;
}

#login-form h1 {
    font-weight: 400;
    font-size: 1.4rem;
}

#login-form  input, 
#login-form  button {
    margin: 15px 0;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid lightgray;
}

#login-form input {
    width: 300px;
    appearance: none;
    outline: none;
    transition: border-color 0.3s ease;
}

#login-form input:valid,
#login-form input:focus {
    border-color: darkgray;
    transition-delay: 0.1s;

}

#login-form button {
    width: 150px;
    border: 1px solid #cc5500;
    background-color: #cc5500;
    color: white;
}

#login-form button:hover {
    background-color: white;
    color: darkgrey;
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: lightgray;
    padding: 20px;
}

.footer p {
    font-size: 0.7rem;
}