
  
  .page-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.logo-log {
  text-align: center;
  background: #222;
  margin-bottom: 25px;
}

  .login-container, .signup-container, .reset-container {
      background: #fff;
      padding: 30px 25px;
      width: 100%;
      max-width: 400px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      border: 1px solid #ccc;
      margin-bottom: 25px;
    }

    .login-container h2, .signup-container h2, .reset-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #646464;
    }

    .form-group {
      position: relative;
      margin-bottom: 15px;
      margin: 25px 0;
    }


      .form-group input:focus + label,
      .form-group input:not(:placeholder-shown) + label,
      .form-group textarea:focus + label,
      .form-group textarea:not(:placeholder-shown) + label,
      .form-group select:focus + label,
      .form-group select:valid + label {
      top: -10px;
      left: 8px;
      font-size: 14px;
      color: #15887c;
    }


    .form-group label {
      display: block;
      font-weight: 400;
      margin-bottom: 6px;
      color: #868686;

      position: absolute;
      top: 11px;
      left: 12px;
      background: #ffffffff;
      padding: 0 5px;
      font-size: 14px;
      transition: all 0.2s ease-in-out;
      pointer-events: none;
    }

    .form-group input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .form-group input:focus {
      border: 1px solid #15887c;
      outline: none;
    }

    .login-button, .signup-button, .reset-button {
      width: 100%;
      padding: 10px;
      background: #15887c;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .login-button:hover, .signup-button:hover, .reset-button:hover {
      background: #126d62;
    }

    .extra {
      text-align: center;
      margin-top: 14px;
      font-size: 16px;
      
    }

    .extra a {
      color: #15887c;
      text-decoration: none;
    }

  .extra a:hover {
      text-decoration: underline;
      color: #105851ff;
    }

  .extra2 {
    font-size: 15px;
    text-align: center;
    border: 3px dashed #d1d1d1ff;
 
    margin-top:16px;
  }

.extra2 a{
color: #484848;
  text-decoration: none;
}


.extra2 a:hover{
color: rgb(36, 36, 36);
  text-decoration: underline;
}
    .agreement{
  margin-top:12px;
  font-size:14px;
  margin-bottom: 12px;
  
}
.agreement a:link{
text-decoration: underline;

color: #8e8e8e;
}

.agreement a:link:hover{

color: #1b4a79ff;
}

  
    
  .back-btn {
 
  color: #d9d9d9;
  border: 1px solid #dbdbdb;
  text-decoration: none;
  border-radius: 5px;
  padding: 5px;
 
}

.back-btn:hover {
  background-color: #0a282c;
  border: 1px solid #ffffff;
  color: white;
  transition: 0.8s;
 
  
}


.back-home {
  position: absolute;
  top: 20px;
  left: 20px;
}


.alert {
  background-color: #aa6c6c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  margin-top: 10px;
}

.alert .close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}