@import "BarlowFontFamily/BarlowFontFamily.css";
@import "SigmaIconFont/SigmaIconLine.css";
@import "SigmaIconFont/SigmaIconFill.css";

.login-m-icon{
    height: 70%; /* Set the image height to 70% of the parent div */
    max-height: 3vh; /* Ensure it doesn't exceed 70% */
    width: auto;
    margin: 1vh;
  }

.login-m-button{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(219, 219, 219);
    white-space: nowrap;
    overflow: visible;
    color: black;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 60%;
    max-width: 90%;
    margin-right: 10px;
    height: 5vh;
    border-radius: 0.5vh;
    font-weight: 600;
    margin: auto;
    margin-top: 6%;
}

.ou {
  max-width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6%;
}

.line-text::before {
  content: "";
  display: inline-block;
  width: 45%; /* Adjust the width of the line on the left side */
  border-bottom: 1px solid white; /* Creates the line on the left */
  vertical-align: middle; /* Aligns it with the middle of the text */
  margin-right: 10px; /* Adds space between the line and the text */
}

.line-text::after {
  content: "";
  display: inline-block;
  width: 45%; /* Adjust the width of the line on the right side */
  border-bottom: 1px solid white; /* Creates the line on the right */
  vertical-align: middle; /* Aligns it with the middle of the text */
  margin-left: 10px; /* Adds space between the line and the text */
}