/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Estilos responsive para el formulario de registro */

#rc_form_reg {
    margin:20px;
}

.rc_form_registr {
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.rc_form_registr label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
}

.rc_form_registr input[type="text"],
.rc_form_registr input[type="email"],
.rc_form_registr input[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.rc_form_registr input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

.rc_form_registr input[type="submit"]:hover {
    background-color: #005177;
}

@media (min-width: 600px) {
    .rc_form_registr {
        max-width: 500px;
        margin: 0 auto;
    }
}