/****** SIGN-UP FORM SPECIFIC STYLES ******/
span#homepage-intro {
    display: flex;
    justify-content: center;
}
div#signup {
    width: 100%;
}
div#signup .form-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    border: 1px solid rgba(207, 228, 89, 0.1);
}

div#signup h2 {
    color: #cfe459;
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

div#signup input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #555;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dob-selectors {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.dob-selectors select {
    flex: 1;
    max-width: 120px;
    padding: 6px 8px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
}

div#signup input:focus {
    border-color: #cfe459;
    background: rgba(255,255,255,0.1);
    outline: none;
    box-shadow: 0 0 6px rgba(207,228,89,0.3);
}

/* Sub Label */
.sub_label {
    display: block;
    font-size: 8pt;
    color: #ccc;
    font-style: italic;
    margin-bottom: 10px;
}

/* Label style */
div#signup label {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 5px;
    display: block;
}

/* Button */
div#signup button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    background: #cfe459;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

div#signup button:hover {
    background: #a4bc39;
    color: #fff;
}

/* Sub Text */
#signup-text {
    font-size: 10px;
    color: #aaa;
    margin-top: 10px;
    text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media screen and (max-width: 768px) {
    div#signup .form-container { width: 90%; padding: 25px 15px; }
    div#signup h2 { font-size: 20px; }
}

@media screen and (max-width: 480px) {
    div#signup .form-container { padding: 20px 10px; }
    div#signup button { padding: 12px; font-size: 14px; }
    #signup-text { font-size: 8px; }
    .sub_label { font-size: 6pt; }
}