body .app-form {
	align-items: center;
	display: flex;
	height: 100vh!important;
	justify-content: center;
	margin: 0;
	max-width: unset!important;
	width: 100vh!important;
}

#login {
	max-width: 400px;
}

#login .card {
	position: relative;
}

#login .loader {
    align-items: center;
    display: none;
    height: 100%;
    justify-content: center;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	width: 100%;
	z-index: 1;
}

#login.loading .loader {
	display: flex;
}

#login.loading .card-body > :not(.loader) {
	opacity: .25;
}

#login .card-body {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

#login h1 {
	margin: 0;
}

#login small {
	line-height: 80%;
}

#login .credentials {
	width: 100%;
}

#login button {
	width: 50%;
}

#login .message {
	font-size: .9rem;
}

#login .form-floating:focus-within {
  z-index: 2;
}

#login input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#login input[type="password"] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.otp-container {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.otp-input {
	width: 50px;
	height: 60px;
	font-size: 32px;
	text-align: center;
	border: 2px solid #ccc;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.2s;
}

.otp-input:focus {
	border-color: #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}