﻿/***************************************************************************
    REGISTRO.ASPX - REACT ISLAND
    -------------------------------------------------------------
    Validation Messages
    Field State
    Form Summary
    Form Status
    Payment Review
    Progress Indicator
    PayPal Button State
***************************************************************************/


/***************************************************************************
    VALIDATION MESSAGES
***************************************************************************/

.contacto-react-validation-message {
    margin-top: 2px;
    margin-bottom: 2px;
}

.contacto-react-error {
    color: #cc0000;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    display: block;
}

.contacto-react-success {
    color: #008000;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    display: block;
}


/***************************************************************************
    FIELD STATE
***************************************************************************/

.contacto-react-valid {
    border: 1px solid #008000 !important;
}

.contacto-react-invalid {
    border: 1px solid #cc0000 !important;
}


/***************************************************************************
    FORM SUMMARY
***************************************************************************/

.contacto-react-summary {
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #cccccc;
    font-size: 12px;
    line-height: 1.5;
}

.contacto-react-summary-title {
    font-weight: bold;
    margin-bottom: 6px;
}


/***************************************************************************
    FORM STATUS
***************************************************************************/

.contacto-react-form-status {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 12px;
    font-weight: bold;
}

.contacto-react-form-status-ok {
    color: #008000;
}

.contacto-react-form-status-error {
    color: #cc0000;
}


/***************************************************************************
    PAYMENT REVIEW
***************************************************************************/

.contacto-react-confirm-review {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
}

    .contacto-react-confirm-review input {
        vertical-align: middle;
    }


/***************************************************************************
    PROGRESS INDICATOR
***************************************************************************/

.contacto-react-progress {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
}

.contacto-react-progress-text {
    margin-bottom: 4px;
    font-weight: bold;
}

.contacto-react-progress-bar {
    width: 100%;
    height: 8px;
    border: 1px solid #cccccc;
    background-color: #f5f5f5;
}

.contacto-react-progress-bar-fill {
    height: 100%;
    background-color: #008000;
    transition: width 0.2s ease-in-out;
}


/***************************************************************************
    PAYPAL BUTTON STATE
***************************************************************************/

.contacto-react-button-ready {
    border: 3px solid #008000 !important;
    opacity: 1;
    cursor: pointer;
}

.contacto-react-button-pending {
    border: 3px solid #cc0000 !important;
    opacity: 0.5;
    cursor: not-allowed;
}

input.contacto-react-button-ready[type="submit"] {
    border: 2px solid #008000 !important;
    opacity: 1;
    cursor: pointer !important;
}

input.contacto-react-button-pending[type="submit"],
input.contacto-react-button-pending[type="submit"]:disabled {
    border: 2px solid #cc0000 !important;
    opacity: 0.5;
    cursor: not-allowed !important;
}


/***************************************************************************
    PASSWORD VISIBILITY
***************************************************************************/

.contacto-react-show-passwords {
    margin-top: 4px;
    font-size: 12px;
}

.contacto-react-show-passwords input {
    vertical-align: middle;
}