/* Shared login styles copied here to ensure scaling for a longer registration layout */
:root {
    --iguka-purple: #6d0b37;
    --secondary-color: #f4d35e;
    --text-color: #333;
    --iguka-green: #0d6e0d;
    --border-color: #d7c712;
}
body { 
    font-family: 'Segoe UI', sans-serif; 
    background-color: var(--light-bg); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    padding: 20px 0; 
}

.signup-container { 
    background-color: #ffffff; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    width: 100%; 
    max-width: 500px; 
    padding: 30px; 
    box-sizing: border-box; 
    border-top: 5px solid var(--iguka-purple); 
}

.header-section { 
    text-align: center; 
    margin-bottom: 20px; 
}

.logo { 
    max-width: 180px; 
}

.title { 
    color: var(--iguka-purple); 
    font-size: 1.4rem; 
    font-weight: bold; 
    margin: 5px 0;
}

form p { 
    margin-bottom: 14px; 
}

label { 
    display: block; 
    margin-bottom: 4px; 
    color: var(--iguka-purple); 
    font-weight: 600; 
    font-size: 0.85rem; 
}

input, select { 
    width: 100%; 
    padding: 9px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
}

input:focus, select:focus { 
    border-color: var(--iguka-purple); 
    outline: none; 
}

.btn-submit { 
    background-color: var(--iguka-purple); 
    color: white; 
    border: none; 
    width: 100%; 
    padding: 12px; 
    font-weight: bold; 
    border-radius: 4px; 
    cursor: pointer; 
    transition: var(--light-bg) 0.3s; 
}

.btn-submit:hover { 
    background-color: var(--iguka-green); 
    border-bottom: 3px solid var(--iguka-gold); 
}

.footer-links { 
    text-align: center; 
    margin-top: 15px; 
    font-size: 0.85rem; 
}

.footer-links a { 
    color: var(--iguka-purple); 
    text-decoration: none; 
    font-weight: bold; 
}
.errorlist { 
    color: #721c24; 
    background-color: #f8d7da; 
    padding: 8px; 
    list-style-type: none; 
    border-radius: 4px; 
    font-size: 0.85rem; 
}