 :root {
      --primary: #697ad9;
      --accent: #9aa4dd;
      --bg: #f5f8ff;
      --text-dark: #1c1c1c;
      --text-light: #697ad9;
      --white: #ffffff;
      --error-color: #d32f2f;
    }



    .container {
      background: var(--white);
      padding: 40px 32px;
	  margin:60px auto;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      width: 100%;
      max-width: 400px;
    }

    h1 {
      font-size: 24px;
      color: var(--primary);
      text-align: center;
      margin-bottom: 32px;
      font-weight: 600;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
      color: var(--text-dark);
    }

    input {
      width: 100%;
      padding: 12px 14px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-sizing: border-box;
      transition: border-color 0.3s;
    }

    input:focus {
      border-color: var(--primary);
      outline: none;
    }

    .error {
      font-size: 13px;
      color: var(--error-color);
      margin-top: 6px;
      display: none;
    }

button[type="submit"] {
  width: 100%;
  padding: 16px; 
  background-color:#697ad9;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px; 
  cursor: pointer;
  transition: background-color 0.3s;
}

    button:hover {
      background-color: #5f6fcb;
    }

    .forgot-password {
      text-align: right;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .forgot-password a {
      color: var(--text-light);
      text-decoration: none;
    }

    .forgot-password a:hover {
      text-decoration: underline;
    }

    .register-link {
      text-align: center;
      font-size: 14px;
      margin-top: 24px;
    }

    .register-link a {
      color: var(--primary);
      text-decoration: none;
    }

    .register-link a:hover {
      text-decoration: underline;
    }
  </style>