body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    background: #f8f9fd;
    color: #333;
  }
  
  /* Colby theme colors */
  :root {
    --primary: #003366;
    --accent: #d4af37;
  }
  
  a {
    color: var(--accent);
    transition: 0.3s ease;
  }
  
  a:hover {
    color: var(--primary);
    text-decoration: none;
  }
  
  .ftco-section {
    padding: 7em 0;
  }
  
  .wrap {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 34px -15px rgba(0, 0, 0, 0.24);
  }
  
  .img {
    width: 100%;
    height: 200px;
    background-image: url("../images/bg-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  
  .form-control {
    height: 48px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .form-control:focus {
    border: 1px solid var(--primary);
    box-shadow: none;
  }
  
  .btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
  }
  
  .text-warning {
    color: var(--accent) !important;
  }
  
/* Checkbox */
.checkbox-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrap input {
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 2; 
}

.checkbox-wrap .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 3px;
  margin-right: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.checkbox-wrap input:checked ~ .checkmark {
  background-color: var(--primary);
}

.checkbox-wrap .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-wrap input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-wrap .checkmark::after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

  
  .field-icon {
    position: absolute;
    right: 15px;
    top: 30%; 
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  
  
  .form-group {
    position: relative; 
  }
  
  .form-control {
    padding-right: 40px; 
  }
  
 
  .password-container {
      position: relative;
  }

  .password-container .toggle-password {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-150%);
      cursor: pointer;
      font-size: 1.1rem;
      color: rgba(0, 0, 0, 0.5);
      z-index: 3;
  }

/* GOOGLE SIGN-IN BUTTON STYLES   */

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  font-weight: 600;
  color: #555;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.google-btn:hover {
  background-color: #f7f7f7;
  border-color: #c6c6c6;
  text-decoration: none;
  color: #333;
}

.google-icon {
  width: 20px;
  height: 20px;
}