@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,700;1,400;1,700&display=swap');

html, body {
    z-index: 0;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-image: url("img/login-background.webp");
    background-size: cover;
}

* {
    font-family: 'Source Sans Pro', sans-serif;
    outline: none;
}

.login-form {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 400px;
    height: 500px;
    margin-top: -250px;
    margin-left: -200px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.9);
    text-align: center;
}

.login-form img {
    width: 128px;
    height: 128px;
    margin-top: 40px;
    margin-bottom: 40px;
}


.login-form input {
    display: block;
    width: 300px;
    padding: 8px 16px;
    font-size: 16px;
    margin-left: 30px;
    margin-bottom: 10px;
    border: 1px solid #d3d3d3;
    border-radius: 2px;
    -webkit-transition:0.2s all ease;
	transition:0.2s ease all;
}

.login-form input:focus {
    border: 1px solid #33634d;
}

.login-form button {
    cursor: pointer;
    color: #33634d;
    background-color: #b7dac4;
    font-weight: bold;
    border-radius: 3px;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    -webkit-transition:0.2s all ease;
	transition:0.2s ease all;
    margin-top: 30px;
}

.login-form button:hover {
    background-color: #33634d;
    color: white;
}