.login {
  /* display: flex; */
  align-self: center;
  align-items: center;
  justify-items: center ;
  /* background-color: rgb(252,252,252); */
  max-width: 700px;
  height: auto;
  padding-bottom: 20px;
  
}
/* .login{
    background-color: rgb(253, 253, 253);
    padding: 2px 2px;
    border-radius: 8px;
    border-color:  orange black black orange;
    border-width: 0.15px 2px 2px;
    height: 600px;
} */
/* input {
  width: 320px;
  margin-left: 5px;
  margin-bottom: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  border-color: White white lightblue lightblue ;
}    */

input,select {
    width: 300px;
    margin-bottom: auto;

    border: 2px solid #ccc;
    border-color: silver;
    padding: 5px;
    border-radius: 6px ;
    height: 30px;
    text-align: center;
    color: navy;
    font-size: medium;
    /* font-weight: bold; */
    letter-spacing: 1px;
    text-align-last: center; 
}


select option{
  color:navy;
  font-size: small;
}

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:navy
}


::placeholder {
    color: #999;
    font-style: italic;
    font-size: smaller;
}

.register{
  text-decoration: underline;
  color: navy;
  font-style:italic;
  font-weight: bold;
  font-size: 17px;
}
.register:hover {
  text-decoration: underline;
  color: orangered;
}

.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: 12px;
  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: 30% 70%;
  column-gap: 15px;
  min-width:700px;
  justify-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;
}
