/*input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: #6366f1;
    background-color: rgba(15, 23, 42, 0.7);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

select:focus {
    outline: none;
    border-color: #6366f1;
    background-color: rgba(15, 23, 42, 0.7);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder {
    color: rgba(148, 163, 184, 0.5);
}*/

.help-text ul {
    margin-top: 0.25rem;
    margin-left: 1rem;
}

.help-text li {
    margin-bottom: 0.125rem;
}
