*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(#2A2A2A 60%, white 60%);
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    font-style: normal;
}

.back-to-lobby {
    text-decoration: none;
    position: relative;
    top: -55px;
    left: -10px;
    color: black;
    font-size: 0.95rem;
    background-color: #D9D9D9;
    padding: 10px 15px;
    border-radius: 12px;
    transition: background-color 0.3s ease;

    &:hover {
        background-color: #bfbfbf;
    }
}

.login-container {
    width: 450px;
    padding: 20px 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #D9D9D9;
    border-radius: 20px;

    h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.25rem;
    }
}

label {
    font-size: 18px;
    display: block;
    margin-left: 10px;
    margin-bottom: 5px9;
    font-size: 0.95rem;
}

input {
    margin-bottom: 30px;
    all: unset;
    width: 350px;
    height: 44px;
    background-color: white;
    border-radius: 14px;
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 50px;

    &:focus {
        outline: 2px solid #68a1e2;
    }
}

.form-group {
    padding: 0 10px;
}

.login-button {
    all: unset;
    display: block;
    justify-self: center;
    width: 80%;
    height: 50px;
    background-color: #4b4b4b;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    line-height: 50px;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;

    &:hover {
        background-color: #383838;
    }

    &:focus {
        outline: 2px solid #68a1e2;
    }
}

.line {
    all: unset;
    display: block;
    height: 1px;
    justify-self: center;
    width: 70%;
    background-color: #4b4b4b;
    margin: 30px 0;
    border-radius: 10px;
}

.register {

    display: block;
    justify-self: center;
    font-size: 0.95rem;


}