/* Agrega tus estilos CSS aquí */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

form {
    margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
    border-radius: 8px;
    position: relative;

    
}

.form-group {
    margin-bottom: 10px;
}

label, input, select {
    width: 100%;
}

.toggle-button {
    display: flex;
    justify-content: space-around;
}

.toggle-button input {
    display: none;
}

.toggle-button label {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
}

.toggle-button input:checked + label {
    background: #0066cc;
    color: white;
}

input[type="submit"] {
    background: #0066cc;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
}

input[type="submit"]:disabled {
    background: #ccc;
}

.cp-error {
    border: 2px solid red !important;
    background-color: #ffeaea;
}
#cp-error-label {
    font-size: 0.9em;
    margin-left: 8px;
}

#cp-global-loader {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.7);
    justify-content: center;
    align-items: center;
}

.cp-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0066cc;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: cp-spin 1s linear infinite;
    margin: auto;
}

@keyframes cp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
