/* assets/css/nicego-form.css */

.nicego-registration-form-wrapper {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nicego-registration-form-wrapper .form-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #333;
}

.nicego-registration-form .form-group {
    margin-bottom: 15px;
}

.nicego-registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.nicego-registration-form .input-text,
.nicego-registration-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
}

.nicego-registration-form .required {
    color: #f00;
}

.nicego-registration-form button.button {
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #0073aa; /* Default WordPress primary color */
    color: #fff;
    transition: background-color 0.3s ease;
}

.nicego-registration-form button.button:hover {
    opacity: 0.9;
}

.nicego-registration-form button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-messages {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: bold;
}

.form-messages.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.form-messages.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}