/* Password-protected section */
.password-protected {
    margin-top: 2em;
    text-align: center;
}

.password-protected h3 {
    font-size: 1.4em;
    margin-bottom: 1em;
}

.password-form {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.password-form label {
    font-size: 1.1em;
    color: #333;
}

.password-form input[type="password"] {
    padding: 0.5em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}

.password-form button {
    padding: 0.5em 1em;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.password-form button:hover {
    background-color: #0056b3;
}

/* Protected link */
.protected-link {
    font-size: 1.2em;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.protected-link:hover {
    color: #0056b3;
}

.register-form input[type="password"] {
    padding: 0.5em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}

.register-form button {
    margin-top: 1em; /* Adds spacing between the input field and button */
    padding: 1em 2em; /* Larger padding for a bigger button */
    font-size: 1.2em; /* Larger text size */
    background-color: #ff5722; /* Button color (bright and attention-grabbing) */
    color: #fff; /* Text color */
    border: none;
    border-radius: 8px; /* Slightly rounded corners */
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase; /* Capitalize text */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.register-form button:hover {
    background-color: #e64a19; /* Darker shade on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}



.register-form {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Increase spacing between form elements */
}

.register-form label {
    font-size: 1.2em;
    color: #d1c6c6;
    margin-bottom: 10px;
}

.register-form input[type="text"] {
    padding: 0.8em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.register-form input[type="text"]::placeholder {
    color: #999;
    font-size: 0.9em;
}

.register-form button {
    padding: 1em 2em;
    font-size: 1.2em;
    background-color: #ff3300;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.register-form button:hover {
    background-color: #b32700;
}