.auth-container {
    position: absolute;
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: rgb(20, 20, 20);
    border-radius: 10px;
    border: 2px solid rgb(245, 105, 66);
    box-shadow: 2px 2px 10px rgba(255, 105, 66, 0.5);
}

.auth-container h2 {
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
}

.auth-container form {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    padding: 20px;
}

.input-group input,
.input-group p,
.auth-container form button {
    width: 90%;
    margin: 0 5%;
    height: 35px;
    font-size: 16px;
    border: 0;
}

.input-group input,
.auth-container form button {
    background-color: rgb(30, 30, 30);
    color: white;

    border-radius: 5px;
    padding: 0 10px;
}

.input-group input:focus {
    outline: 2px solid rgb(245, 105, 66);
}

.input-group input {
    z-index: 1;
}

.input-group input::placeholder {
    color: transparent;
}

.input-group p {
    position: relative;
    top: -27.5px;
    left: 5px;
    z-index: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    color: rgb(245, 105, 66);
}

.input-group input:focus + p,
.input-group input:not(:placeholder-shown) + p {
    top: -52.5px;
    left: 5px;
    font-size: 12px;
    color: rgb(245, 105, 66);
    transition: all 0.2s ease-in-out;
}

.btn {
    background-color: rgb(20, 20, 20);
    color: white;
    box-shadow: 2px 2px 2px rgba(245, 105, 66, 0.5);
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    background-color: rgb(245, 105, 66);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.auth-container form a {
    color: gray;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
}

.auth-container form a:hover {
    text-decoration: underline;
}

.input-group input[type="checkbox"] {
    width: auto;
    margin: auto;
    height: auto;
    transform: scale(1.2);
    margin-bottom: 20px;
}