* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f172a; /* Deep dark blue */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Background gradient effect */
.background-radial {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #312e81 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, #581c87 0%, transparent 40%);
    z-index: -1;
}

.login-card {
    background: rgba(30, 41, 59, 0.7); /* Transparent Slate */
    backdrop-filter: blur(12px); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

header h1 {
    color: #a855f7; /* Vibrant Purple */
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.welcome-text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    color: #f8fafc;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

.login-btn {
    width: 100%;
    padding: 0.85rem;
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #a855f7;
}

footer {
    margin-top: 1.5rem;
    text-align: center;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
}

footer a:hover {
    color: #f8fafc;
}

.header-logo-container {
    display: flex;
    align-items: center;      /* Centers items vertically */
    justify-content: center;   /* Centers the group horizontally */
    gap: 12px;                /* Space between logo and text */
    margin-bottom: 20px;
}

.title-logo {
    width: 70px;              /* Adjust size to match your font height */
    height: auto;             /* Keeps aspect ratio */
    display: block;
    text-align: justify;
}

.management-title {
    color: #a855f7;           /* Matches your purple theme */
    font-size: 28px;
    font-weight: 700;
    margin: 0;                /* Removes default heading margins */
    text-align: center;
}

/* Change 'New password:' and 'New password confirmation:' color */
label {
    color: #ffffff; /* Use any hex code here */
}

/* Replace .brand-title with whatever class you used for that text */
.brand-title {
    color: #a855f7; 
}

/* 1. Change the Text Color */
.helptext, .helptext li {
    color: #daa9a9; /* Change this to your preferred color (e.g., white) */
    font-size: 13px;
    margin-bottom: 5px;
}

/* 2. Change the Bullet Point Color */
.helptext li::marker {
    color: #a855f7; /* This makes the bullets purple to match your button */
}

/* 3. Style the Input Labels (e.g., "New password:") */
label {
    color: #d9e1ec; /* A light grayish-blue */
    display: block;
    margin-bottom: 8px;
}

form ul li {
    color: #6a7582; /* Light gray text */
}

form ul li::marker {
    color: #adff2f; /* Green bullets to match your heading */
}
