/*
 * All of the CSS for your public-facing functionality should be included in this file.
 */
.manus-pre-cadastro-form-wrapper {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
}

.manus-pre-cadastro-form-wrapper label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.manus-pre-cadastro-form-wrapper input[type="text"],
.manus-pre-cadastro-form-wrapper input[type="email"],
.manus-pre-cadastro-form-wrapper input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.manus-pre-cadastro-form-wrapper button[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.manus-pre-cadastro-form-wrapper button[type="submit"]:hover {
    background-color: #005177;
}

.manus-pre-cadastro-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.manus-pre-cadastro-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.manus-pre-cadastro-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
