/* ====================================
   RB FORM – PREMIUM DARK STYLE
==================================== */

/* Form wrapper spacing */
.rb-form {
    width: 100%;

}
.customstyle
{
background:#0c2f25;
}

/* Labels */
.rb-form.customstyle label.customlabel {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
}

/* Input + textarea base */
.customcontrol {
    width: 100%;
    background: #062820;
    border: 1px solid rgba(124,255,0,0.3);
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Placeholder */
.customcontrol::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Focus state */
.customcontrol:focus {
    border-color: #7CFF00;
    box-shadow: 0 0 15px rgba(124,255,0,0.4);
    background: #041914;
    outline: none;
}

/* Textarea */
textarea.customcontrol {
    resize: none;
}

/* Submit Button */
.rb-form .btn-primary {
    width: 100%;
    padding: 14px 20px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #0b5ed7, #7CFF00);
    transition: all 0.3s ease;
}

/* Hover Effect */
.rb-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124,255,0,0.4);
}

/* Success message */
.rb-form .rb-success-message {
    margin-top: 15px;
    color: #7CFF00;
    font-weight: 500;
}

/* Error message */
.rb-form .rb-error-message {
    color: #ff4d4d;
    font-size: 13px;
    margin-top: 5px;
}
