#registration-form {
    width:1000px;
}

/*form {
    background: url(/YogaSportsScoring/images/WYSFLogo.jpeg) no-repeat fixed center;
}*/

#grid {
    display: grid;
    width: 100%;
    grid-template-columns: 166px 1fr 166px;
}


#grid h1 {
    padding-top: 1em;
}

/* 
#areaA {
    background-color: lime;
}

#areaB {
    background-color: yellow;
}

#areaC {
    background-color: blue;
}
*/

form legend {
    font-size: 2em;
}

/*form fieldset {
    border-color: #cddc39;
}*/

form fieldset h2 { 
    margin: 0; 
}

form #grid { margin-top: 1em; }

form h1 {
    text-align: center;
}

.form-group { 
    margin: auto;
    display: flex;
    padding: .45em 0;
    width: 600px;
    
    /*font-size: 1.3em;*/
 }

.form-group a {
  color: #cddc39;
  text-decoration: none;
}

.form-group a:hover {
    text-decoration: underline;
  }

.form-group label { 
    margin-top: auto;
    margin-bottom: auto;
    padding-right: 10px; 
    width: 15em;
    text-align: right;
    text-align: right;
    color: #363640;
}

.form-group .col-md-4 { 
    padding-right: 5px; 
    width: 10em;
}

.form-group input { 
    padding:.5em .35em .35em .35em;
    font-size: 1em;
    border-radius:6px;
    border:1px solid #cccccc;
    padding-left: .55em;
    width: 17em;
    background-color: var(--inputBackgroundColor,#000);
    color: var(--inputFontColor,#000);
}

.form-group select:focus {
    border-color: #bc2ac9 !important;
}

#form_select_division, #form_select_location_compete, #form_select_payment {
    width:17em;
}
/*
input:focus {
    outline:none; 
    border:1px solid #fe4d4d;
    -webkit-box-shadow: 0px 0px 5px  #4D90FE;
    box-shadow: 0px 0px 5px  #4D90FE;
}
*/

.form-group  select:invalid {
    color: green;
  }


.form-group #help-block-name_phonetic, #help-block-timezone, #help-block-payment, #help-block-home_studio, #help-block-location-compete { 
    padding-top:5px;
    display: block; 
    width: 20em;
    font-size: .75em;
}

.form-group .postureSkill {
    width:30em;
}

.button {
    background: linear-gradient( 135deg, #753370 0%, #298096 100%);
    padding: 15px;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 10px;
    width:100%;
    letter-spacing: .11rem;
    outline:none;
}

.button:hover
{
	transform: scale(1.05) translateY(-3px);
    box-shadow: 3px 3px 6px #e7e5e585;
}

[data-tip] {
	position:relative;

}
[data-tip]:before {
	content:'';
	/* hides the tooltip when not hovered */
	display:none;
	content:'';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #1a1a1a;	
	position:absolute;
	top:30px;
	left:35px;
	z-index:8;
	font-size:0;
	line-height:0;
	width:0;
	height:0;
}
[data-tip]:after {
	display:none;
	content:attr(data-tip);
	position:absolute;
	top:35px;
	left:0px;
	padding:5px 8px;
	background:#1a1a1a;
	color:#fff;
	z-index:9;
	font-size: 0.75em;
	height:18px;
	line-height:18px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	white-space:nowrap;
	word-wrap:normal;
}
[data-tip]:hover:before,
[data-tip]:hover:after {
	display:block;
}