#wpam-reg-form {
    max-width: 520px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-family: "Segoe UI", sans-serif;
}

#wpam-reg-form fieldset {
    border: none;
    padding: 0;
}

#wpam-reg-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
    color: #333;
}

#wpam-reg-form input[type="text"],
#wpam-reg-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.2s ease;
}

#wpam-reg-form input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.15);
}

/* Checkbox */
#agreeTermsLabel {
    margin-top: 15px;
    font-size: 14px;
}

#agreeTermsLabel input {
    margin-right: 6px;
}

/* Submit button */
.wpam-registration-form-submit {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #0073aa, #0096dd);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.wpam-registration-form-submit:hover {
    background: linear-gradient(135deg, #005f8d, #007bbd);
}

/* Required note */
#wpam-reg-form > form > span,
#wpam-reg-form > form > div:first-child {
    color: #888;
    font-size: 13px;
}
.wpam-login-form {
    max-width: 420px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-family: "Segoe UI", sans-serif;
}

.wpam-login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.wpam-login-form input[type="text"],
.wpam-login-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.2s;
}

.wpam-login-form input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.15);
}

.login-remember {
    margin-top: 12px;
    font-size: 14px;
}

.login-remember input {
    margin-right: 6px;
}

.login-submit {
    margin-top: 20px;
}

#wp-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #0073aa, #0096dd);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#wp-submit:hover {
    background: linear-gradient(135deg, #005f8d, #007bbd);
}

/* Lost password */
.wpam-lost-password {
    text-align: center;
    margin-top: 15px;
}

.wpam-lost-password a {
    color: #0073aa;
    font-size: 14px;
    text-decoration: none;
}

.wpam-lost-password a:hover {
    text-decoration: underline;
}
