* {
  user-select: none;
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For IE/Edge */
}
body{background-color: #E3E6E6;
    background-color: rgb(0, 0, 0);
    background-position: center;
    margin: 0;
    height: 100vh;
    font-family: 'Inter', sans-serif;
  }
.top{display: flex;
    padding: 2vh;
    background-color: rgba(0, 0, 0, 0.692);
}
.top i{font-size: 25px; color: white;}
.right-group {
  display: flex;
  gap: 30px;
  margin-left: auto; /* pushes this group to the right */
}
.mid {padding-top: 5vh;}
.imgdiv{ 
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  height: fit-content;
}
.imgdiv img{align-items: center; border-radius: 100px;
   height: 125px;
   width: 125px;
}
.imgdiv h2{color: white;}
.imgdiv p{color: white;}
.bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */

  height: fit-content;
  padding-bottom:10px;
  z-index: 999;        /* optional, makes sure it stays on top */
}
.blackbody{display: flex; font-size: 25px; background-color: rgb(0, 32, 70);
border-radius: 100px; padding: 15px; width: 80%;justify-content: space-between;
}
.fa-phone{color: yellowgreen;}
@media (max-width: 500px) {

}

 .login-form {
            width: 90%;
            display: inline-block; /* Display the form as an inline block */
            text-align: left; /* Align text to the left within the inline block */
        }

        .form-group {
            width: 100%;
            margin-bottom: 15px;
            border-radius: 100px;
        }

        .form-group input {
            width: 100%; /* Make input fields take up 100% width */
            box-sizing: border-box; /* Include padding and border in the width */
            padding: 12px;
            font-size: 16px;
            background-color: #f5f6f7;
            border-radius: 100px;
            border: 0px;
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .loginbutton{width: 100%;
         background-color: #1877f2;
         color: #fff;
         cursor: pointer;
         border: 0px;
         border-radius: 100px;
         padding: 10px;
         font-size: 16px;
        }
        .imgcon img{width: 200px; margin-top: 30px; margin-bottom: 25px;}
        .imgcon{display: flex; justify-content: center;}
