* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 30px;
}

body {
    background-color: rgba(30, 30, 30, 1);
    color: white;
    font-family: system-ui;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 40px;
    text-align: center;
}

.logosSection {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
}

.userLogo {
    border-radius: 100px;
    height: 50px;
    width: 50px;
    position: relative;
}

.logininfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
}

input {
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 250px;
    font-size: 16px;
    width: 100%;
}

.reset {
    border-radius: 100px;
    padding: 10px;
    background-color: rgb(0, 81, 255);
    color: white;
    border: none;   
    cursor: pointer;
    margin-right: auto;
    align-self: flex-start;
}

.login {
    width: 100%;
    padding: 10px;
    background-color: rgb(0, 100, 170);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 10px;
}

.buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
}

.oauthLogo {
    height: 50px;
    width: 50px;
    border-radius: 100px;
    cursor: pointer;
}