.login {
  align-self: center;
  align-items: center;
  justify-items: center ;
  max-width: 700px;
  height: auto;
  padding-bottom: 20px;
  
}

input,select {
    font-family: Georgia,sans-serif;
    height: 35px;
    margin-bottom: auto;
    border: 0.7px solid #ccc;
    border-color: silver;
    padding: 5px;
    border-radius: 6px ;
    text-align: center;
    color: #000099;
    justify-content: center;
    font-size: 1rem;
}

input:focus,select:focus,.bizdescription textarea:focus, .complain_txt:focus {
  outline: none;
  border-color: orange ;
  box-shadow: 0 0 5px White white yellow yellow;
  color:#000099
}

::placeholder {
    color: #999;
    font-style: italic;
    text-transform:capitalize !important;
}

.register{
  text-decoration: underline;
  color: #000099;
  font-style:italic;
  font-weight: bold;
  font-size: 1rem;
}
.register:hover {
  text-decoration: underline;
  color: #00AAFF;
}

.login_msgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 10px;
  padding-left: 70px;
}
.tooltip {
  display: none;
  color: red;
  font-size: 0.75rem;
  align-self: center;
  
}

input:invalid + .tooltip {
  display: inline;
}

.error {
  white-space: pre-wrap;
  color:red;
  font-weight: bold;
  text-align: center;
  padding-right: 35px;
}
.success {
  white-space: pre-wrap;
  color:green;
  font-weight: bold;
  text-align: center;
  padding-right: 35px;
}

.regigrid_block{
  display:grid;
  grid-template-columns: 40% 60%;
  column-gap: 15px;
  width:100%;
  justify-items: center;
  align-items: center;
}
.regigrid_label{
  grid-column: 1;
  max-width:fit-content;
  justify-self: right;
}
.regigrid_inputs{
  grid-column: 2;
  justify-self: left;
}
.regigrid_club{
  grid-column: 1 / span 2;
  justify-content: center;
}