.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.wrapper {
  width: 400px;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.login-form {
  display: flex;
  flex-direction: column;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.input-field {
  position: relative;
  margin: 25px 0;
}

.input-field input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.input-field input:focus {
  border-bottom: 3px solid #0088cc;
}


.input-field label {
  color: black;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-field input:focus ~ label,
.input-field input:valid ~ label {
  top: 0;
  left: 15px;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
}

.forget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 35px 0;
}

#remember {
  accent-color: #fc0b2b;
}

.forget label {
  display: flex;
  align-items: center;
}

.forget label p {
  margin-left: 8px;
  margin-bottom: 0;
}

.wrapper a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.wrapper a:hover {
  color: #fc0b2b;
}

button {
  background: #fc0b2b;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 25px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(252, 11, 43, 0.4);
}

button:hover {
  background: #d60a25;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 11, 43, 0.6);
}

.register {
  text-align: center;
  margin-top: 30px;
}
.kfa-student-forgot-pass-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

.kfa-student-forgot-pass-popup {
            background: linear-gradient(135deg, #ff4b4b 0%, #3b82f6 100%);
            padding: 2px;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
            margin: 20px;
        }

.kfa-student-forgot-pass-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            width: 100%;
        }

.kfa-student-forgot-pass-title {
            color: #2563eb;
            font-size: 24px;
            text-align: center;
            margin-bottom: 20px;
        }

.kfa-student-forgot-pass-input {
            width: calc(100% - 24px);
            padding: 12px;
            margin: 10px 12px;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
            display: block;
        }

.kfa-student-forgot-pass-input:focus {
            border-color: #3b82f6;
            outline: none;
        }

.kfa-student-forgot-pass-button {
            width: calc(100% - 24px);
            padding: 12px;
            margin: 10px 12px;
            background: linear-gradient(135deg, #ff4b4b 0%, #3b82f6 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: opacity 0.3s;
            display: block;
        }

.kfa-student-forgot-pass-button:hover {
            opacity: 0.9;
        }

.kfa-student-forgot-pass-step {
            display: none;
            width: 100%;
        }
.kfa-student-forgot-pass-step.active {
            display: block;
        }