* {
    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: flex-end;
    justify-content: flex-end;
    margin: 90px;
    margin-right: 200px;
    margin-top: 30px;
}

.img-logo {
    width: 150px;
    height: 260px;
    margin-right: 100px;
    margin-bottom: 25px;
}

.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: var(--green-logo);
    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: var(--red-logo);
    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: var(--red-logo);
    font-size: 20px;
    font-family: var(--roboto);
    margin-top: 8px;
    margin-right: -100px;
}

