@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    font-family: Ubuntu,sans-serif,Arial;
    position: relative;
    background-color: rgba(32, 32, 32, 0.925);
}
#login{
    display: flex;
    align-items: center;
    justify-content: center;
}
.email-required{
    position: relative;
    outline: none;
    padding: 10px 50px 10px 50px;
    transition: border-color 0.5s ease;
}
.email-required:focus{
    border-color: red;
}
.password-required{
    outline: none;
    padding: 10px 50px 10px 50px;
    margin-top: 5px;
    margin-bottom: 10px;
    transition: border-color 0.5s ease;
}
.password-required:focus{
    border-color: red;
}
.abschicken{
    border-radius: 10px;
    background-color: red;
    color: white;
    border: none;
    font-size: 17px;
    width: 275px;
    height: 30px;
    text-align: center;
    justify-content: center;
    font-family: Ubuntu,sans-serif,Arial;
    align-items: center;
    cursor: pointer;
    transition: color,background-color 0.5s ease-in-out;
}
.abschicken:hover{
background-color: rgb(177, 9, 9);
color: white;
}
.header{
    
}
.text-1{
position: absolute;
top: 350px;
margin-left: 50px;


}
.register span{
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}
.register{
    margin-top: 6px;
    position: absolute;
    left: 840px;
    font-size: 13px;
}
