/* Profile page styles - login/signup forms */

.profile {
    display: none;
    min-height: 100vh;
    overflow-y: auto;
    margin-top: 2rem;
}

/* Authentication Form Container */
.auth-form {
    display: none; /* Will be toggled with JS */
}

/* Authorized Content Container */
.authorized-content {
    display: none; /* Will be toggled with JS */
    padding: 2rem;
}

.logout-button {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.logout-button:hover {
    transform: scale(1.02);
}

.logout-button:active {
    color: var(--light-brown-color);
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 2rem;
}

.auth-button {
    font-size: 1.7rem;
    font-weight: 250;
    text-align: center;
    cursor: pointer;
    color: #FFFFFF;
    border: 1px solid var(--orange-color);
    border-radius: 40px;
    background: transparent;
    padding: 7px 30px;
    display: inline-block;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: transform 0.3s ease;
}

.auth-button:hover:not(:disabled) {
    transform: scale(1.02);
}

.auth-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-button-login {
    background-color: var(--orange-color);
}

.auth-button-register {
    background-color: transparent;
}

.close-menu {
    text-align: right;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 5rem;
    padding-right: 1.5rem;
    cursor: pointer;
}

.username-password {
    text-align: center;
    margin-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.username-password input {
    width: 100%;
    height: 1.5rem;
    margin-bottom: 1rem;
}

.turnstile-container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.username-label,
.password-label {
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 300;
}

.logout-button-container{
    text-align: center;
}