.register{
   display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center;    /* Center vertically */
        height: 80vh;          /* Full height of the viewport */
        margin: 0; width: 100%;
}

#loginForm, #signupForm{
  width: 400px; height: 400px;
  text-align: center;
  

}

input{
  height: 40px; width: 70%;
  margin-bottom: 10px;  text-align: center;
  border: none; 
  border-radius: 5px;
}

.btn{
  height: 40px; width: 70%;
  margin-top: 10px;  text-align: center;
  border: none; margin-bottom: 20px;
  border-radius: 5px;
  background-color: #800020;
  color: #fff;
}

.logo{
  width: 40px; margin: 23px
}

a{
  text-decoration: none;
  color: #535353; margin-top: 20px;
}


/* Style the withGoogle_Div */
.withGoogle_Div {
    display: inline-flex; /* Align text and icon side-by-side */
    align-items: center; /* Vertically align items */
    justify-content: center; /* Center content */
    gap: 10px; /* Add space between text and image */
    padding: 10px 20px; /* Add padding around the button */
   margin: 20px;
    background-color: #f5f5f52a; /* Slightly darker background on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 5px; /* Rounded corners */
   
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for the button */
.withGoogle_Div:hover {
   background-color: #ffffff;
   border: 1px solid #ddd; 

}

/* Style the text */
.withGoogle_Div span {
    font-size: 16px; /* Text size */
    font-weight: bold; /* Bold text */
    color: #868686; /* Dark text color */
}

/* Style the image */
#google {
    width: 20px; /* Set width of the icon */
    height: 23px; /* Set height of the icon */
}


#ErrorMsg{
  color: #ff0000;
}
