/* Modern AffiliateWP Profile Styles */
.affwp-modern-profile {
    font-family: 'Arial', sans-serif;
    width: 100%;
    box-sizing: border-box;
    padding: 2px;
}

.affwp-modern-profile form {
    width: 100%;
}

.affwp-modern-profile label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
    margin-top: 15px;
}

.affwp-modern-profile input[type="email"],
.affwp-modern-profile input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    transition: border-color 0.3s ease;
    box-shadow: none;
    background-color: #fff;
    box-sizing: border-box;
    width: 100%;
}

.affwp-modern-profile input[type="email"]:focus,
.affwp-modern-profile input[type="text"]:focus {
    outline: none;
    border-color: #343ae5;
}

.affwp-modern-profile .field-row {
    display: flex;
    justify-content: space-between;
    margin-top: 1px;
}

.affwp-modern-profile .field-column {
    width: 48%;
}

.affwp-modern-profile .button-container {
    text-align: center;
    margin-top: 20px;
}

.affwp-modern-profile input[type="submit"] {
    background-color: #343ae5;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.affwp-modern-profile input[type="submit"]:hover {
    background-color: #2a2eb8;
}

.affwp-notice {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.affwp-notice.success {
    background-color: rgba(52, 58, 229, 0.1);
    color: #343ae5;
}

.affwp-notice.error {
    background-color: #fff3f3;
    color: #dc3545;
}

@media (max-width: 480px) {
    .affwp-modern-profile .field-row {
        flex-direction: column;
    }

    .affwp-modern-profile .field-column {
        width: 100%;
    }
}