﻿#divCoCoForm .cocon-row + .cocon-row
{
  margin-top: 16px;
}

.coco-form-wrapper
{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.coco-form-wrapper,
.coco-form-wrapper *
{
  box-sizing: border-box;
}

.coco-label
{
  max-width: 100%;
  font-weight: bold;
  color: inherit;
  font-family: inherit;
  padding-bottom: 8px;
  display: block;
}

/* input fields: */
#divCoCoForm input,
#divCoCoForm textarea
{
  margin: 0;
}

#divCoCoForm .cocon-name-inputs
{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#divCoCoForm .cocon-name-inputs input
{
  width: 100%;
  max-width: calc(50% - 4px);
}

.cocon-name-inputs input:first-child
{
  margin-right: 4px;
}

.cocon-name-inputs input:last-child
{
  margin-left: 4px;
}

.coco-text-input
{
  padding: 5px;
  margin-top: 2px;
  margin-bottom: 7px;
  width: 100%;
  font-weight: normal;
  font-family: inherit;
  color: inherit;
  border-color: lightgray;
  border-style:solid;
  border-width: 1px;
  border-radius: 2px;
}

/* Error styling */
.coco-error-banner
{
  width: 100%;
  border-radius: 2px;
  background-color: #DF4949;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: inherit;
}

.coco-error-banner *
{
  color: #FFFFFF;
  font-family: inherit;
  text-align: left;
  padding-left: 10px;
  display: block;
}

.cocon-button
{
  max-width: 100%;
  width: 100%;
  background-color: #333;
  font-family: inherit;
  font-size: 16px;
  color: white;
  padding: 5px;
  text-align: center;
  border: 1px solid #333;
  border-radius: 2px;
  cursor: pointer;
}

.coco-confirmation-icon
{
  padding-bottom: 20px;
}

#divCoCoConfirmation
{
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

/* Honey pot styling */
.coco-h-p
{
  display: none !important;
}