.reg-wrapper { /* max-width: 500px; */ margin: 0 auto; }
.reg-header { text-align: center; margin-bottom: 30px; }
.reg-header h2 { color: #0a1a2a; margin-bottom: 10px; }
.reg-header p { color: #555; line-height: 1.5; font-size: 1rem; }

.reg-form { 
    /* background: #fff; 
    padding: 30px; 
    border-radius: 8px; 
    border: 1px solid #e5e5e5; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);  */
}

.reg-label { font-weight: bold; display: block; margin-bottom: 5px; }
.reg-input { 
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    margin-bottom: 5px; 
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

.reg-error { 
    display: block; 
    margin-bottom: 15px; 
    color: #dc3545; 
    font-size: 0.9rem; 
    min-height: 1.2em; /* Prevents jumps when empty */
}

/* Password Specifics */
.password-wrapper { position: relative; margin-bottom: 5px; }
.password-wrapper input { padding-right: 40px; }

.strength-bar { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    height: 4px; 
    transition: width 0.3s; 
    border-radius: 0 0 4px 4px; 
}

.toggle-password { 
    position: absolute; 
    right: 10px; 
    top: 12px; 
    cursor: pointer; 
    font-size: 1.2rem; 
    color: #666; 
    z-index: 5;
}
.toggle-password:hover { color: #0a1a2a; }

.reg-btn { width: 100%; }
.g-recaptcha-container { margin-bottom: 20px; }