/* Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
background: linear-gradient(to right, #e0c3fc, #8ec5fc);
}

/* Container Styling */
#auth {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.card {
  display: flex;
  flex-direction: row;
  border: none;
  border-radius: 30px;
  overflow: hidden;  
  width: 100%;
  max-width: 960px;
border-left: 6px solid #09a785 !important;
border-bottom: 6px solid #09a785 !important;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset !important;
}
.card:hover {
border-right: 2px solid #09a785 !important;
border-top: 2px solid #09a785 !important;
border-left: 2px solid #09a785 !important;
border-bottom: 0px solid #09a785 !important;*/
box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}


.card-body {
  padding: 2.5rem;
}

h3 {
  /*font-weight: 600;
  font-size: 26px;
  color: #1a1f36;*/
    font-weight: 700;
    font-size: 26px;
    color: #09a785;
    text-transform: uppercase;
    font-family: Poppins;
}

.form-control {
  border: 1px solid #e0e6ed;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #09a785;
  box-shadow: 0 0 0 2px rgba(57, 78, 234, 0.15);
}

label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
  color: #2c3e50;
}

.form-check-input {
  cursor: pointer;
}

.form-check-label a {
  color: #394EEA;
  text-decoration: none;
}

.btn-primary {
 /* background-color: #088461;
  border: none;
  padding: 14px 0;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
*/
    background-color: #0ba685;
    border: 1px dotted #428142;
    padding: 14px 0;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    color: white !important;

}

.btn-primary:hover {
  background-color: black;
border-radius: 8px;
color: white
}

.text-dark {
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
 color: #09a785 !important;
}

.text-dark:hover {
  text-decoration: underline;
}

.form-control-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  color: #9aa4b2;
}

.position-relative input {
  padding-left: 40px;
}

/* Logo customization */
.text-center img {
  height: 64px;
  margin-bottom: 10px;
}