/* ----------------------------
   Mensagens de sucesso e erro
----------------------------- */
.wum-message {
    font-family: inherit;  /* herda a fonte do tema */
    font-size: 12px;
    margin: 10px 0;
}

.wum-message.success p {
    color: green;
    font-weight: normal;
}

.wum-message.error p {
    color: red;
    font-weight: bold;
}

/* ------------------------
   Botões do WP User Flow 
--------------------------*/
#wum-register-form button,
#wum-login-form button,
#wum-profile-edit-form button,
#wum-profile-form button,
#wum-profile button {
    background-color: #D8613C;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#wum-register-form button:hover,
#wum-login-form button:hover,
#wum-profile-edit-form button:hover,
#wum-profile-form button:hover,
#wum-profile button:hover {
    color: #FFFFFF;
    background-color: #c75531; /* ligeiro escurecimento ao passar o rato */
}

/* ------------------------
   Links de ação no perfil 
--------------------------*/
#wum-profile a,
#wum-profile-container a {
    background-color: #D8613C;
    color: #FFFFFF !important; /* texto branco */
    font-size: 14px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
    transition: background-color 0.3s ease;
}

#wum-profile a:hover,
#wum-profile-container a:hover {
    background-color: #c75531; /* ligeiro escurecimento ao passar o rato */
    color: #FFFFFF !important; /* mantém branco no hover */
}

/* Formulários de registo */
#wum-register-form p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #D8613C;
    font-family: inherit; /* herda do tema */
}

#wum-register-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #D8613C;
}

#wum-register-form label span {
    color: red; /* o asterisco obrigatório fica em vermelho */
}

/* Estilo geral dos inputs */
#wum-register-form input[type="text"],
#wum-register-form input[type="email"],
#wum-register-form input[type="password"],
#wum-register-form textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Foco no campo */
#wum-register-form input[type="text"]:focus,
#wum-register-form input[type="email"]:focus,
#wum-register-form input[type="password"]:focus,
#wum-register-form textarea:focus {
    border-color: #D8613C;
    box-shadow: 0 0 5px rgba(216, 97, 60, 0.5);
    outline: none;
}

/* Formulários de login */
#wum-login-form p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #D8613C;
    font-family: inherit; /* herda do tema */
}

#wum-login-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #D8613C;
}

#wum-login-form label span {
    color: red; /* o asterisco obrigatório fica em vermelho */
}

/* Estilo geral dos inputs */
#wum-login-form input[type="text"],
#wum-login-form input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Foco no campo */
#wum-login-form input[type="text"]:focus,
#wum-login-form input[type="password"]:focus {
    border-color: #D8613C;
    box-shadow: 0 0 5px rgba(216, 97, 60, 0.5);
    outline: none;
}

/* Formulários de perfil */
#wum-profile p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #D8613C;
    font-family: inherit; /* herda do tema */
}

/* Formulários de editar perfil */
#wum-profile-form p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #D8613C;
    font-family: inherit; /* herda do tema */
}

#wum-profile-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #D8613C;
}

/* Estilo geral dos inputs */
#wum-profile-form input[type="text"],
#wum-profile-form input[type="email"],
#wum-profile-form input[type="password"],
#wum-profile-form textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Foco no campo */
#wum-profile-form input[type="text"]:focus,
#wum-profile-form input[type="email"]:focus,
#wum-profile-form input[type="password"]:focus,
#wum-profile-form textarea:focus {
    border-color: #D8613C;
    box-shadow: 0 0 5px rgba(216, 97, 60, 0.5);
    outline: none;
}
