

body {
  overflow: hidden;
}

/* ======= BACKGROUND SECTION ======= */
.background {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("psychometric-test.webp") no-repeat center center/cover; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ======= START BUTTON ======= */
.start-exam-btn {
  position: relative;
  z-index: 10;
  padding: 18px 50px;
  font-size: 22px;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  box-shadow: 0 8px 20px rgba(37, 117, 252, 0.4);
  cursor: pointer;
  transition: 0.3s ease;
}

.start-exam-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(106, 17, 203, 0.5);
}
  

.hidden {
  display: none;
}

.login-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-box {
  width: 360px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 40px 30px;
  color: #fff;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

/* ======= LOGO + TITLE ======= */
.logo {
  width: 150px;
  margin-bottom: 10px;
}

.logo-section h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo-section span {
  display: block;
  font-size: 13px;
  color: #d6d6d6;
}

h2 {
  margin: 20px 0;
  color: #fff;
  font-weight: 600;
}

/* ======= INPUTS ======= */
.input-group {
  text-align: left;
  margin-bottom: 16px;
}

.input-group label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  color: #000;
  outline: none;
}

/* ======= START BUTTON (LOGIN FORM) ======= */
.start-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.start-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 65, 108, 0.4);
}

/* ======= ANIMATIONS ======= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .login-box {
    width: 100%;
    padding: 25px 20px;
  }
    .background {
        background: url("/Psychometric/PsyMob.webp") no-repeat center center/cover;
        justify-content: center;
        padding-right: 0;
    }
  .start-exam-btn {
    padding: 15px 35px;
    font-size: 18px;
  }
}