.login {
  width: 100%;
}
.login-container {
  width: 60%;
  margin: 2rem auto;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}

.login-form {
  flex: 1;
  padding: 20px;
}

.login-form h2 {
  margin-bottom: 20px;
  text-align: center;
}

.image {
  width: 70%;
  height: auto;
  margin: 0 auto;
}

.image img {
  width: 80%;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  /* border-radius: 5px; */
  padding: 10px 25px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  /* box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1); */
  outline: none;
}

.custom-btn {
  background-color: #1c4386;
  line-height: 42px;
  padding: 0;
  border: none;
}
.custom-btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.custom-btn:before,
.custom-btn:after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  background: #1c4386;
  /* box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3); */
  transition: all 0.3s ease;
}
.custom-btn:before {
  height: 0%;
  width: 2px;
}
.custom-btn:after {
  width: 0%;
  height: 2px;
}
.custom-btn:hover:before {
  height: 100%;
}
.custom-btn:hover:after {
  width: 100%;
}
.custom-btn:hover {
  background: transparent;
}
.custom-btn span:hover {
  color: #1c4386;
}
.custom-btn span:before,
.custom-btn span:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  background: #1c4386;
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
  transition: all 0.3s ease;
}
.custom-btn span:before {
  width: 2px;
  height: 0%;
}
.custom-btn span:after {
  height: 2px;
  width: 0%;
}
.custom-btn span:hover:before {
  height: 100%;
}
.custom-btn span:hover:after {
  width: 100%;
}

button {
  font-family: Poppins;
  background-color: #1c4386;
  color: #fff;
  padding: 10px 20px;
  border: none;
  /* border-radius: 4px; */
  cursor: pointer;
}

/* The previous CSS rules remain unchanged */

.login-options {
  margin-top: 20px;
}

.login-options hr {
  margin: 10px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.login-options p {
  margin-bottom: 10px;
  text-align: center;
}

.social-icons {
  text-align: center;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

/* Add your own custom styles for the Facebook and Google icons here */
/* Example: */
.facebook-icon img,
.google-icon img {
  width: 4rem;
  height: auto;
  margin: 0 1rem;
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.login-image {
  flex: 1;
  background-color: #ffffff;
  background-image: url('your-login-image.jpg'); /* Replace with your login image */
  background-size: cover;
}

@media screen and (max-width: 980px) {
  .laptop {
    display: none;
  }
  .login-phone {
    width: 100%;
    margin: 5rem 0 0;
  }
  .phone-container {
    width: 90%;
    margin: 0 auto;
  }
  .animation {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  .custom-btn-phone {
    padding: 1rem;
  }
  .phone-container h2 {
    text-align: center;
    color: black;
  }
  .custom-btn-phone:hover {
    background: transparent;
    color: #1c4386;
    border: 1px solid #1c4386;
    transition: all 0.3s ease;
  }
}

@media screen and (min-width: 981px) {
  .login-phone {
    display: none;
  }
}
