body {
  margin: 0; 
}

html {
  font-family: Tahoma, Arial, Verdana;
  font-size: 100%;
}

header {
  background: #ED8EB6;
  height: 3.5rem; 
  display: flex;
  align-items: center; /* чтобы выровнять элементы по вертикали */
  justify-content: space-between; /* распределяет элементы по краям */

}

footer {
  background: #474747;
  height: 2.5rem;
  padding: 2px;
  font-size: 0.8rem;
  color: white;
  text-align: center;
  line-height: 2.5rem;
  white-space: nowrap;
}

main {
 padding: 10px;
 text-align:justify; 
}

a {
  color: inherit;
  text-decoration: none;
} 

input[type="submit"] {
/*  border: none; */
  height: 30px;
  font-size: 18px;
/*  width: 200px */
}


input[type="checkbox"]{
  width: 16px;
  height: 16px;
}

input[type="date"]{
  font-size: 18px;
  padding: 4px;
  margin-top: 3px;
}

input[type="radio"] {
  -ms-transform: scale(1.5);     /* IE 9 */
  -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
  transform: scale(1.5);
} 

input[type="file"]{
  font-size: 18px;
  padding: 4px;
  margin-top: 3px; 
}

textarea {
  max-width: 80%;
  min-width: 100px;
  min-height: 50px;
  font-size: 18px;
}

.logo_img {
    width: 192px; /* or any custom size */
    height: auto; 
    object-fit: contain;
    margin-right: auto; /* прижимает логотип к левому краю */
    display: block;
}

.main_bold {
 padding: 10px;
 font-weight: bold;
}

.title_01 {  
   color: #ED8EB6;
   font-size: 1.2rem;
   padding: 15px;
}

.reg_button {
    color: beige;
    height: 1.7rem; 
    font-size: 1rem;
    margin: 0.8rem;
    border: none;
    /*width: 144px;*/
    border-radius: 20px;
    background-color: rgb(54,96,209);
}

.reg_button:hover {
    background-color: rgb(54,96,209);
    color: rgb(255, 255, 255);
    box-shadow: rgba(32, 31, 31, 0.35) 0px 7px 10px;

}

.asterisk {
  vertical-align: super;
  font-size: smaller;
  color: red;
}

.boldtext{
  font-weight:bold;
}



.enter {
  height: 30px; 
  width: 300px;
  font-size: 18px;
  padding: 4px 0;
  border-radius: 5px;
  margin-top: 2px;
  border: 1px solid #999;  
  text-indent: 10px;
}

.selector {
  font-size: 18px;
  width: 300px; 
  margin-top: 2px;
  height: 30px;  
}

.selector_short {
  font-size: 18px;
  width: 170px; 
  margin-top: 2px;
  height: 30px;  
}

.selector_nowidth {
  font-size: 18px;
  margin-top: 2px;
  height: 30px; 
}

.password {
  width: 300px;
  margin: 15px 0px;
  position: relative; 
}
#password-input {
  width: 100%;
  padding: 4px 0;
  height: 30px;
  line-height: 40px;
  text-indent: 10px;
  margin: 0 0 15px 0;
  border-radius: 5px;
  border: 1px solid #999;
  font-size: 18px;
}

.password-control {
  position: absolute;
  top: 11px;
  right: 6px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(design/view.svg) 0 0 no-repeat;
}
.password-control.view {
  background: url(design/no-view.svg) 0 0 no-repeat;
}

#password-strength-status {
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: -20px;
}

.medium-password {
    background-color: #fd0;
}

.weak-password {
    background-color: red;
    color: white;
}

.strong-password {
    background-color: green;
    color: white;
}

a.text:active, /* активная/посещенная ссылка */
a.text:hover,  /* при наведении */
a.text {
  text-decoration: none;
  color: #FFFFFF; 
}

.center-block {
  text-align: center;
}

.text-center-red {  /* Уведомление для пользователей с отключенным JS */
  color: red;
  text-align: center;
} 

.message {  /* textarea с объявлением */
  width: 85%;
  max-width: 90%;
  min-width: 15rem;
  height: 10rem;
  min-height: 7rem;
  max-height: 20rem;
  font-size: 18px;
}
