/* Registration Form Styles */
.cur-form-wrapper {
    max-width: 600px;
    background: #ffffff;
    padding: 30px;
    font-family: Arial, sans-serif;
}

.cur-form-wrapper label {
    display: block;
    color: #7A7A7A;
    font-size: 13px;
}

/* ------------------------------------------------------------------
   Inputs — explicit border-radius: 0 on every field to override any
   theme-level rounding.
   ------------------------------------------------------------------ */
.cur-form-wrapper input[type="text"],
.cur-form-wrapper input[type="email"],
.cur-form-wrapper input[type="password"] {
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #bbb;
    border-radius: 0;
    font-size: 16px;
}

.cur-form-wrapper input[type="submit"] {
    background-color: #b12028;
    border: none;
    border-radius: 0;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cur-form-wrapper input[type="submit"]:hover {
    background-color: #911920;
}

/* ------------------------------------------------------------------
   Notices — also squared off.
   ------------------------------------------------------------------ */
.cur-form-wrapper .success {
    background-color: #e7f9f0;
    color: #2e7d32;
    padding: 10px;
    border-left: 4px solid #2e7d32;
    border-radius: 0;
    margin-bottom: 15px;
}

.cur-form-wrapper .error {
    background-color: #ffe5e5;
    color: #b12028;
    padding: 10px;
    border-left: 4px solid #b12028;
    border-radius: 0;
    margin-bottom: 15px;
}

.input-error {
    color: #b12028;
    font-size: 0.875em;
    margin-top: 4px;
}

/* ------------------------------------------------------------------
   Wizard-style buttons (kept from original, squared off).
   ------------------------------------------------------------------ */
button.next-step,
button.prev-step {
    border-radius: 0;
}

button.next-step:hover,
button.prev-step:hover {
    background-color: #911920;
}

/* ------------------------------------------------------------------
   Grid layout
   ------------------------------------------------------------------ */
.cur-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 600px) {
    .cur-form-grid {
        grid-template-columns: 1fr;
    }
}

.cur-form-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* ------------------------------------------------------------------
   "Login here" link — brand red.
   ------------------------------------------------------------------ */
.cur-form-buttons a,
.cur-form-buttons a:link,
.cur-form-buttons a:visited {
    color: #B11F28;
    font-size: 13px;
    
}

.cur-form-buttons span {
    color: #7A7A7A;
    font-size: 13px;
}

.cur-form-buttons a:hover,
.cur-form-buttons a:focus {
    color: #911920;
    text-decoration: underline;
}