body{
    font-family: monospace;
    margin: 0;
}
.login_h1{
    font-size: 40px;
    font-family: monospace;
    /* margin-bottom: 80px; */
}

.login_centre{
    
    justify-content: center;
    /* margin: 20px; */
    text-align: center;
    padding-top: 80px;
}
.login_input{
    /* border:none; */
    outline: none;
    border: black 2px solid;
    margin-bottom: 30px;
    padding: 10px;
    font-size: 20px;
    width: 400px;
    font-family: monospace;

    /* text-align: center; */
}
.login_submit{
    background-color:white;
    color:rgb(2, 126, 126);
    border: rgb(2, 126, 126) 3px solid;
    border-radius: 5px;
    font-size: 20px;
    padding: 10px;
    transition: 0.3s;
    font-family: monospace;

    margin: 20px;
}
.login_submit:hover{
    background-color:rgb(2, 126, 126);
    color:white; 
    font-family: monospace;

}
.countrycode{
    outline: none;
    border: black 2px solid;
    margin-bottom: 30px;
    padding: 10px;
    font-size: 20px;
    width: 100px;
    font-family: monospace;
}
.twoninone{
width: 185px;
}
.seventytothirty{
    width: 295px;
}

@media(max-width: 450px){
    .login_h1{
        font-size: 30px;
    }
    .login_input{
        width: 300px;
    }
    .twoninone{
        width: 135px;
    }
    .seventytothirty{
        width: 195px;
    }
}
@media(max-width: 300px){
    .login_h1{
        font-size: 20px;
    }
    .login_input{
        width: 200px;
    }
    .twoninone{
        width: 85px;
    }
    .seventytothirty{
        width: 95px;
    }
}
/* ------- popover ---------  */
.popover {
    display: inline-block;
    position: relative;
  }
  
  .popover__menu {
    border-radius: 4px;
    border-top: 2px solid #49c5b6;
    background: #fff;
    list-style-type: none;
    margin: 8px 0;
    min-width: 100%;
    padding: 0.5rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 3px 0 rgba(63, 63, 68, 0.2);
    transition-property: transform, opacity;
    transition-duration: 200ms;
    transition-timing-function: ease;
    transform: scale(0.9);
    transform-origin: top left;
    display: block;
    opacity: 0;
  }
  .popover__menu:after {
    bottom: 100%;
    left: 0.5rem;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #49c5b6;
    border-width: 7px;
  }
  
  .popover__menu-item {
    white-space: nowrap;
  }
  .popover__menu-item button {
    border: 0;
    border-radius: 0;
    width: 100%;
    text-align: left;
  }
  .popover__menu-item button:hover, .popover__menu-item button:focus {
    background-color: #f1f1f1;
  }
  
  .popover--active .popover__menu {
    transform: scale(1);
    display: block;
    opacity: 1;
  }
  .info_message_text{
    width: 200px;
  }
  @media(max-width: 500px){
    .info_message_text{
        width: 100px;
      }
  }