* {
    box-sizing: border-box;
}

body {
    background-image: none;
    background-color: #000000;
    background-position: center;
    background-repeat: repeat;
}

.back {
    position: relative;
    display: flex;
    gap: 20px;
    margin: 1%;
}


a {
    text-decoration-line: none;
    text-decoration: none;
    color: inherit;
}

h1 {
    text-align: center;
    margin: 20px 0; /* Adjusts top and bottom spacing */
    font-size: 20px;
}

p {
    text-align: center;
    margin: 20px 0; /* Adjusts top and bottom spacing */
    font-size: 15px;
}



.button-container {
    flex-wrap: wrap;
    display: none;
    justify-content: center;
    margin-top: 50px;
}

.gamingCupboard {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 5px;
    border: none;
    background: none;
    cursor: pointer;
    transition: 0.3s;
}

.gamingCupboard img {
    width: 200px;
    height: auto;
}

.gamingCupboard:hover {
    transform: scale(1.05);

}

.login-container {
    display: none;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form,
.token-handler,
.account-manager,
.signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: rgb(66, 217, 255);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 500px;
}

.login-form input,
.token-handler input,
.signup-form input {
    background-color: transparent;
    color: rgb(58, 199, 255);
    border: 1px solid rgb(66, 217, 255);
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
}

.signup-form input {
    color: lightgreen;
    border: 1px solid lightgreen;
}

.token-handler input {
    color: rgb(238, 144, 144);
    border: 1px solid rgb(238, 144, 144);
}

.login-form button,
.login-container button,
.account-manager button,
.token-handler button,
.signup-form button {
    background-color: rgb(66, 217, 255);
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
}

.logoutbutton button {
    background-color: rgb(66, 217, 255);
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
}

.account-manager {

    display: none;
    flex-direction: column;
    align-items: center; /* Center the buttons horizontally */
    justify-content: center; /* Center the buttons vertically if necessary */
    gap: 20px; /* Adds spacing between buttons */
    background-color: black;
    color: rgb(66, 217, 255);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 500px;
    margin: 0 auto; /* Centers the entire container horizontally */
}

.account-manager button {
    background-color: rgb(139, 139, 139);
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0s;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    max-width: 300px; /* Adjusts the maximum width for the buttons */
}
.account-manager button:hover {
    background-color: rgb(94, 94, 94);
}


.signup-form button {
    background-color: lightgreen;
}

.token-handler button {
    background-color: rgb(255, 150, 127);
}

.login-form h2,
.signup-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-form p,
.token-handler p,
.signup-form p {
    color: aliceblue;
    text-align: center;
    margin-bottom: 20px;
}
