:root {
    --iguka-purple:#6d0b37;
    --iguka-gold: #FFC72C;
    --iguka-dark-gold: #D4A316;
    --light-bg: #f9f6fa;
    --iguka-green: #03531b;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--iguka-green);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.login-container {
    background-color: rgb(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    padding: 30px;
    box-sizing: border-box;
    border-top: 10px solid var(--iguka-purple);
}
.header-section {
    text-align: center;
    margin-bottom: 25px;
}
.logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 10px;
}
.title {
    color: var(--iguka-purple);
    font-size: 1.4rem;
    margin: 5px 0;
    font-weight: bold;
}
.subtitle {
    color: #666;
    font-size: 0.9rem;
    border-bottom: 5px solid var(--iguka-gold);
    padding-bottom: 8px;
    display: inline-block;
}
form p {
    margin-bottom: 18px;
}
label {
    display: block;
    margin-bottom: 6px;
    color: var(--iguka-purple);
    font-weight: 600;
    font-size: 0.9rem;
}
input[type="text"], input[type="password"], select, input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
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-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 1.9s;
    margin-top: 10px;
}
.btn-submit:hover {
    background-color: #350f36;
    border-bottom: 3px solid var(--iguka-gold);
}
.footer-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #555;
}
.footer-links a {
    color: var(--iguka-purple);
    text-decoration: none;
    font-weight: bold;
}
.footer-links a:hover {
    text-decoration: underline;
}
.messages {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    text-align: center;
}
.errorlist {
    list-style: none;
    color:red;
}