    .alert-success {
            color: #155724;
            background-color: #d4edda;
            border-color: #c3e6cb;
        }

        input[type="text"],
        input[type="number"],
        input[type="email"],
        select {
            border: 1px solid #FFFF60 !important;
            height: 42px !important;
            border-radius: 8px !important;
            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
            -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
            -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
            -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
            -o-transition: border linear 0.2s, box-shadow linear 0.2s;
            transition: border linear 0.2s, box-shadow linear 0.2s;
            padding: 4px 10px !important;
        }

        #form_solicitud {
            background: transparent;
            text-align: left;
            border-radius: 25px;
            margin-top: 33px;
            border-style: solid;
            border-width: 2px;
            border-color: #ffffff;
            padding-top: 30px;
            padding-left: 12px;
            padding-right: 12px;
            color: #fff;
        }

        .invalid-feedback {
            background: none !important;
            color: #fbdc00 !important;
        }

        .text-right {
            text-align: left !important;
            font-weight: normal !important;
            font-size: 19px !important;
        }
		
		.btn-success {
			-moz-border-radius:25px;
			-webkit-border-radius:25px;
			float: right;
			color: white;
			/**Color del texto del boton */
			background-color: #F25C05;
			/**Fondo del boton */
			border-color: #278C0B;
			/**es el color de los bordes dle boton, siempre va del mismo color de background-color para un mejor diseño */
		}
		.btn-success:hover {
  			background: #278C0B;
  			color: #fff !important;

		}
form.cuestionario {
    max-width: 600px;
}

form.cuestionario label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

form.cuestionario .form-input {
    padding: 1em;
}

form.cuestionario .form-input input[type='text'],
form.cuestionario .form-input input[type='email'],
form.cuestionario textarea {
    display: block;
    width: 100%;
}

p.exito {
    font-size: 1.5em;
    padding: 1em;
    border: 2px solid green;
    background: lightgreen;
}

p.error {
    font-size: 1.5em;
    padding: 1em;
    border: 2px solid red;
    background: #ff8787;
}

input.valid{
    background: #9deb91;
}

input.invalid{
    background: #eb91ae;
}