/* REGISTER PAGE LAYOUT */
/* Main container with background image */
.register-container {
    background-image: url('/img/background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* REGISTRATION FORM */
/* Form container with glass effect */
.register-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
}

/* Form title styling */
.register-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

/* FORM ELEMENTS */
/* Form group container */
.form-group {
    margin-bottom: 20px;
}

/* Form label styling */
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

/* Form input styling */
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

/* Input focus state */
.form-group input:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.2);
}

/* PASSWORD GUIDE */
/* Password requirements container */
.password-guide {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    font-size: 16px;
}

/* Password guide heading */
.password-guide h3 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Password guide list container */
.password-guide ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* Password guide list items */
.password-guide li {
    margin: 8px 0;
    color: #555;
}

/* BUTTONS AND INTERACTIVE ELEMENTS */
/* Register button styling */
.register-button {
    width: 100%;
    padding: 12px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

/* Register button hover state */
.register-button:hover {
    background-color: #0052a3;
}

/* FEEDBACK MESSAGES */
/* Message container */
.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

/* Error message styling */
.error-message {
    background-color: #ffe6e6;
    color: #cc0000;
    border: 1px solid #ffcccc;
}

/* Password strength indicator */
#strength-text {
    margin-top: 8px;
    font-size: 14px;
}

/* ACCESSIBILITY STYLES */
/* Large text support for better readability */
.large-text .register-title {
    font-size: 32px;
}

.large-text .form-group label {
    font-size: 20px;
}

.large-text .form-group input {
    font-size: 20px;
    padding: 14px;
}

.large-text .password-guide {
    font-size: 20px;
}

.large-text .password-guide h3 {
    font-size: 24px;
}

.large-text .register-button {
    font-size: 20px;
    padding: 14px;
}

.large-text #strength-text,
.large-text #strength-message {
    font-size: 18px;
}

