@charset "UTF-8";

body {
  background-image: url('bg-login.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  transform: scale(0.9); /* Scale the whole page to 90% */
  transform-origin: center; /* Ensure scaling is centered */
}

.form {
    padding-left: 50px;
    background-color: #fff;
    display: block;
    padding: 3rem;
    max-width: 350px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .form-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    text-align: center;
    color: #000;
  }
  
  .input-container {
    position: relative;
  }
  
  .input-container input, .form button {
    outline: none;
    border: 1px solid #e5e7eb;
    margin: 15px 0;
  }
  
  .input-container input {
    background-color: #fff;
    padding: 1rem;
    padding-right: 3rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    width: 300px;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  
  .input-container span {
    display: grid;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    place-content: center;
  }
  
  .input-container span svg {
    color: #9CA3AF;
    width: 1rem;
    height: 1rem;
  }
  
  .submit {
    display: block;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: #4F46E5;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    width: 100%;
    border-radius: 0.5rem;
    text-transform: uppercase;
  }

/* Card styling */
.login-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Logo styling */
.logo {
    width: 200px;
    margin-bottom: 20px;
}

/* Form styling */
.form-control {
    border-radius: 10px;
}

/* Button styling */
.btn-custom {
    background-color: #3e9c35;
    border: none;
    color: white;
    border-radius: 10px;
    padding: 10px 0;
    font-weight: bold;
    width: 100%;
}
.btn-custom:hover {
    background-color: #cf9a30;
    color: white;
}

/* Footer text */
.footer-text {
    font-size: 0.9rem;
    color: #888;
    margin-top: 25px;
}
  
