* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

:root {
    --red-logo: #9b1a2e;
    --green-logo: #488b4a;
    --roboto: "Roboto", sans-serif;
}

body {
    background-image: url("../login-background.jpg");
    background-size: cover;
    background-repeat: no-repeat;  
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* margin: 90px; */
    /* margin-right: 200px; */
    margin-top: 30px;
    /* background-color: #0F3D27; */
}

.container img {
    width: 10%;
    /* background-color: #9b1a2e; */
}

.img-logo:hover {
    scale: 1.1;
    transition: 0.2s;
    cursor: pointer;
}

.login-box {
    background-color: #fff;
    width: 400px;
    height: 340px;
    border-radius: 20px;
    cursor: pointer;
}

h1 {
    padding: 25px;
    text-align: center;
    justify-content: center;
    font-family: var(--roboto);
}

.green-lyrics {
    color: #0F3D27;
    font-weight: bolder;
}

form {
    margin-left: 40px;
    font-family: var(--roboto);
}

form > label {
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
}

form > input {
    width: 300px;
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    margin: 10px;
    background-color: #488b4a34;
    cursor: pointer;
}

button {
    width: 300px;
    padding: 6px;
    margin: 10px;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 19px;
    font-family: var(--roboto);
    cursor: pointer;
}

.copywrite {
    color: #898989;
    font-size: 11px;
    margin-left: 20px;
    margin-top:2px;
}

button > img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
}

.error-item {
    color: #0F3D27;
    font-size: 20px;
    font-family: var(--roboto);
    margin-top: 8px;
    margin-right: -100px;
}

