@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

body {
  background-color: #282a36;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: auto;
  height: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 20px;
}

.card h2 {
  margin-bottom: 10px;
}

.card a.fp {
  width: 100%;
  display: flex;
  color: #5881d0;
}

.login_register {
  display: flex;
  width: 100%;
  border: 1px solid rgba(221, 221, 221, 1);
  border-radius: 15px;
  margin: 20px 0;
}

.login_register a {
  font-size: 1em;
  padding: 10px 55px;
  border: none;
  width: 50%;
}

.login_register a.login {
  border-radius: 15px;
  background-color: transparent;
  color: black;
}

.login_register a.register {
  border-radius: 15px;
  background: linear-gradient(90deg, #003a74, #006ad5);
  color: white;
}

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #dddddd;
  color: #a0a6a3;
  font-family: "Roboto Mono", sans-serif;
  box-shadow: 1px 5px 9px rgba(211, 211, 211, 0.7);
}

.form input.email {
  margin-bottom: 15px;
}

.form input.pass {
  margin-bottom: 15px;
}

.form input.comfirm_pass {
  margin-bottom: 5px;
}

.login_btn {
  font-size: 20px;
  color: white;
  border-radius: 15px;
  border: none;
  background-color: #003a74;
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  background: linear-gradient(-90deg, #003a74, #006ad5);
  box-shadow: 1px 5px 9px rgba(211, 211, 211, 0.9);
}
/* CSS */
.button-blue {
  background-color: #a7d8ff; /* Blue background color */
  margin-bottom: 10px;
  border-radius: 100px;
  box-shadow: rgba(77, 166, 255, 0.2) 0 -25px 18px -14px inset,
    rgba(77, 166, 255, 0.15) 0 1px 2px, rgba(77, 166, 255, 0.15) 0 2px 4px,
    rgba(77, 166, 255, 0.15) 0 4px 8px, rgba(77, 166, 255, 0.15) 0 8px 16px,
    rgba(77, 166, 255, 0.15) 0 16px 32px;
  color: #0366d6; /* Adjusted text color */
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular, -apple-system, system-ui, Roboto, sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-blue:hover {
  box-shadow: rgba(77, 166, 255, 0.35) 0 -25px 18px -14px inset,
    rgba(77, 166, 255, 0.25) 0 1px 2px, rgba(77, 166, 255, 0.25) 0 2px 4px,
    rgba(77, 166, 255, 0.25) 0 4px 8px, rgba(77, 166, 255, 0.25) 0 8px 16px,
    rgba(77, 166, 255, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}
