﻿
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background-image: url('/Client/assest/img/Flux_Dev_A_serene_and_modern_background_image_for_an_optics_an_1.jpeg');*/
    background-size: cover;
  
    position: relative;
    font-family: 'Poppins', sans-serif;
}










h1, h2, h3 {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.overlay {
  position: absolute;
  width: 100%;
  background: black;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.container {
  text-align: center;
  z-index: 2;
  position: relative;
}
.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.logo {
  width: 200px;
  animation: fadeIn 0.5s ease-in-out, floatUpDown 3s infinite alternate ease-in-out;
  border-radius: 10px; 
/*  box-shadow: 0px 0px 20px 20px rgb(221 93 68);*/ 

}
.title {
    font-size: 2.5rem;
    color: white;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 1s forwards;
}
.input-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 1.5s forwards;
}
input {
    padding: 12px 28px;
    font-size: 18px;
    border: 2px solid #FF5733;
    border-radius: 32px;
    outline: none;
    transition: all 0.3s ease;
    width: 296px;
    border: currentColor;
}
input:focus {
  border-color: #ff2a00;
  box-shadow: 0 0 10px rgba(255, 87, 51, 0.5);
}
input:hover, .confirm-btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(255, 87, 51, 0.6);
}
.confirm-btn {
    color: white;
    padding: 10px 53px;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgb(109 255 51 / 30%);
    background: rgb(51 134 29 / 78%);
    backdrop-filter: blur(10px);
    border:none;
}
.confirm-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 87, 51, 0.5);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatUpDown {
  from { transform: translateY(0px); }
  to { transform: translateY(-10px); }
}
body.fade-out {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
@media (max-width: 768px) {
  .title {
      font-size: 2rem;
  }
  .ali{
      width:100% !important;
  }
    input {
        width: 217px;
        font-size: 14px;
        padding: 8px 15px;
    }
  .confirm-btn {
      font-size: 16px;
      padding: 10px 16px;
  }

    .header-title {
        font-size: 18px;
    }

    .header-cell, .table-cell {
        font-size: 14px;
        padding: 8px;
    }
    .container {
        text-align: center;
        z-index: 2;
        position: relative;
    }
}
@media (max-width: 480px) {

    .ali {
        width: 100% !important;
    }
  .title {
      font-size: 1.8rem;
  }
    input {
        width: 217px;
        font-size: 14px;
        padding: 8px 15px;
    }
  .confirm-btn {
      font-size: 14px;
      padding: 8px 14px;
  }

  .header-title {
        font-size: 18px;
    }

  .header-cell, .table-cell {
        font-size: 14px;
        padding: 8px;
   }
    .container {
        text-align: center;
        z-index: 2;
        position: relative;
    }




}
.errorkk {
    background: linear-gradient(135deg, #ff9a5a, #ff6b5f);
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 100px auto;
    animation: fadeIn 0.8s ease-in-out;
}

    .errorkk h1 {
        font-size: 28px;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        color:white;
    }

    .errorkk p {
        font-size: 18px;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .errorkk button {
        padding: 12px 25px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        background: white;
        color: #ff6b5f;
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

        .errorkk button:hover {
            background: #ff4b3a;
            color: white;
            transform: translateY(-2px);
        }

/* Animasiya */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
   