/**
 * For the registration page, only loads there.
 */


/* Container Spacing */
div.form-group {
    padding: 12px 0; /* Vertical breathing room between rows */
    display: flex;
    flex-direction: column;
    gap: 8px; /* Precise 8px gap between label and input */
}

/* Label Styling */
.form-group label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #4a5568;
}


/* Input Styling */
.form-group input {
    height: 48px; /* Fixed height for consistency */
    padding: 0 16px;
    font-size: 18px; /* Best for readability and mobile zoom prevention */
    font-weight:400;
    color: #2d3748;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #ffffff;
    box-sizing: border-box; /* Prevents padding from making the field wider than 100% */
    transition: border-color 0.2s;
}

/* Focus state for a premium feel */
.form-group input:focus {
    outline: none;
    border-color: #0073aa; /* Matches your logo blue */
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.required-star {
    color: #ff0000; /* Pure Red */
    font-weight: bold;
}

.nand-submit {
    transition: all 0.2s ease-in-out;
    margin: 8px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.nand-submit:hover {
    filter: brightness(0.9); /* Darkens the yellow slightly */
    transform: translateY(-1px); /* Subtle lift */
    box-shadow: 0 4px 12px rgba(247, 166, 49, 0.3);
}


/* This variant makes it bigger. */
.nand-form-container {
    background: #ffffff;
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    
    /* The Branding Accent */
    border-top: 5px solid #f7a631; 
    
    /* The "Glow" shadow */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    
    /* Smooth transition for when you add hover or focus effects */
    transition: box-shadow 0.3s ease;
}

/* Subtle depth increase on hover */
.nand-form-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Fix the typography spacing inside the container */
.nand-form-container h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1a202c;
    font-size: 28px;
}

.nand-form-container p {
    color: #718096;
    margin-bottom: 30px;
    line-height: 1.5;
}