/*
Template Name: Admin Template
Author: Wrappixel

File: scss
*/
/* @import url(../../../../fonts/fonts.css?family=Poppins:300,400,500,600,700); */
/*Theme Colors*/
/**
 * Table Of Content
 *
 * 	1. Color system
 *	2. Options
 *	3. Body
 *	4. Typography
 *	5. Breadcrumbs
 *	6. Cards
 *	7. Dropdowns
 *	8. Buttons
 *	9. Typography
 *	10. Progress bars
 *	11. Tables
 *	12. Forms
 *	14. Component
 */
/*******************
Login register and recover password Page
******************/
/* .login-register {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
  padding: 10% 0;
  position: fixed; }

.login-box {
  width: 400px;
  margin: 0 auto; }
  .login-box .footer {
    width: 100%;
    left: 0px;
    right: 0px; }
  .login-box .social {
    display: block;
    margin-bottom: 30px; }

#recoverform {
  display: none; }

.login-sidebar {
  padding: 0px;
  margin-top: 0px; }
  .login-sidebar .login-box {
    right: 0px;
    position: absolute;
    height: 100%; } */

  /* Google Fonts - Poppins */
  @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Nunito", sans-serif;
  }

  body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      /* background-image: linear-gradient(100deg, #a1c4fd 0%, #c2e9fb 100%); */
      /* background-image: url(./assets/img/loginpage/bgset1.jpg); */
      background: url("packa/theme/assets/images/background/loginbg.jpg");
      background-repeat: no-repeat;
      background-position: center;

  }

  .login-container {
      display: flex;
      width: 80%;
      /* max-width: 900px; */
      /* height: 80vh; */
      justify-content: space-around;
      align-items: center;
  }

  .image-container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 10px;
      width: 25%;
      /* The images take 30% of the container width */
  }

  .image-container img {
      width: 250px;
      height: 180px;
      border-radius: 8px;
      object-fit: cover;
  }

  .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 30%;
      /* The form takes the remaining 60% of the width */
      padding: 20px;
      border-radius: 8px;
      background-color: #ffffff5d;
      box-sizing: border-box;
  }

  .container header {
      font-size: 22px;
      font-weight: 600;
      color: #333;
      text-align: center;
      margin-bottom: 20px;
  }

  .container form {
      margin-top: 0;
  }

  form .field {
      margin-bottom: 12px;
  }

  form .input-field {
      position: relative;
      height: 45px;
      width: 100%;
  }

  .input-field input {
      height: 100%;
      width: 100%;
      outline: none;
      border: none;
      border-radius: 8px;
      padding: 0 12px;
      border: 1px solid #d1d1d1;
  }

  .invalid input {
      border-color: #d93025;
  }

  .input-field .show-hide {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      color: #919191;
      cursor: pointer;
      padding: 3px;
  }

  /* Show password functionality */
  .bx-show {
      color: #4070f4;
      /* Change color when password is visible */
  }

  .bx-hide {
      color: #919191;
      /* Default color for hidden password */
  }

  .remember-field {
      display: flex;
      align-items: center;
      margin-top: 8px;
  }

  .remember-label {
      font-size: 14px;
      color: #333;
  }

  .button {
      margin: 18px 0 6px;
  }

  .button input {
      background-image: linear-gradient(to right, #00d2ff 0%, #3a7bd5  51%, #00d2ff  100%);
      margin: 10px;
      padding: 15px 45px;
      text-align: center;
      text-transform: uppercase;
      transition: 0.5s;
      background-size: 200% auto;
      color: white;
      border-radius: 10px;
      display: block;
      border: none;

  }

  .button input:hover {
      background-position: right center; /* change the direction of the change here */
      color: #fff;
      text-decoration: none;
  }
  
  .title {
      font-size: 40px;
      font-weight: 800;
      /* color: whitesmoke; */
      color: #064ea2;
      /* background: linear-gradient(65deg, #064ea2, #0a7cc7); */
  }

  .title p{
      font-size: 30px;
      text-align: center;
      text-transform: capitalize;
      text-align: center;
      margin-top: 30px;
      margin-bottom: 40px;
  }
  .text {
      text-transform: uppercase;
      text-shadow: 1px 1px 6px lightgray;
      font-weight: 800;
      font-size: 48px;
  }