.alpaca-control {
    font-family: Arial, sans-serif; /* Change font */
    font-size: 14px;                /* Adjust text size */
    padding: 8px;                   /* Inner spacing */
    border: 1px solid #ccc;         /* Light border */
    border-radius: 4px;             /* Rounded corners */
    background-color: #fff;         /* Background color */
    box-sizing: border-box;         /* Prevent overflow */
    width: 100%;                    /* Full width inside container */
    margin-bottom: 10px;
}

.alpaca-control-label {
    color: white;
    font-weight:bold;
}  

/* On focus */
.alpaca-control:focus {
    border-color: #323232;          /* Highlight border */
    outline: none;                  /* Remove default outline */
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

/* Disabled state */
.alpaca-control[disabled] {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

/* For textarea controls */
textarea.alpaca-control {
    min-height: 80px;
    resize: vertical; /* Allow vertical resize only */
}

.alpaca-message {
    color:white;
    background-color: #C72925;
    padding: 2px;
    font-size: 10pt;
    font-weight: bold;
    border-radius:4px; 
    transition:background .18s ease, box-shadow .18s ease;
}  

.openform-validation-message {
    color: #C72925;
    background-color: white;
    padding: 2px;
    font-size: 12pt;
    font-weight: bold;
    border-radius:4px; 
    transition:background .18s ease, box-shadow .18s ease;
}  

.btn-openform {
  	color: white;
	background-color: #76ACC9 !important;
    border-color: #3C7A9A !important;
    border-radius: 3px !important;
  	padding: 10px 20px;
}  

.btn-openform:hover {
  	color: #cdcdcd;
}  

.ResultMessage {
 	color: white; 
}  