html, body {
	height: 100% !important;
	margin: 0 !important;
}

html {
	font-size: 16px !important;
	background-image: linear-gradient(to bottom right, #eff6ff,#ffffff,#faf5ff) !important;
}

body {
	min-height: 100dvh !important;
	padding: 0 1rem !important;
	justify-content: center !important;
	align-items: center !important;
	display: flex !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.slog-wrap {
	max-width: 27rem;
	width: 100%;
}

.slog-login-box {
	padding: 2rem;
	background-color: rgb(255 255 255 / 0.8);
	border-radius: 1rem;
/*	box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);  */
    border:1px solid #e0e0e2;
	transition-duration: 500ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.slog-login-box:hover {
	box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.slog-form-title p {
    font-weight: 500;
    color: #374151;
}

.slog-form-title h2 {
    color: transparent;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, #2563eb, #9333ea);
    margin: 0;
}

.slog-form-title p {
	color: rgb(107 114 128 / 1);
	margin-top: 1.5rem;
    margin-bottom: 0;
}

.slog-form-row {
	position: relative;
	margin-top: 1.5rem;
}

.slog-login-form input {
    padding-right: 1rem;
    padding-left: 2.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    width: 100%;
	font-size: 1.2rem;
}

.slog-wrap input:focus {
	box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(59 130 246 / 1), 0 0 #0000;
	outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: transparent;
}

.slog-button {
	margin-top: 1.5rem;
	transition-duration: 200ms;
	padding-top: 0.75rem;
    padding-bottom: 0.75rem;
	color: rgb(255 255 255 / 1);
	box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	background-image: linear-gradient(to right, #2563eb, #9333ea);
	border-width: 0;
	border-radius: 0.75rem;
	width: 100%;
	font-size: 100%;
	font-family: inherit;
	line-height: inherit;
	cursor: pointer;
}

.slog-wrap form button:hover {
	opacity: 0.9;
	transform: translate(0, -0.125rem) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
	box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.slog-text {
    color: rgb(75 85 99 / 1);
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.slog-text a {
	color: rgb(37 99 235 / 1);
}

.slog-text a:hover {
	color: rgb(30 64 175 / 1);
}

.slog-otp-fields {
	display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
}

.slog-otp-fields input {
	width: 3rem;
	height: 3rem;
	text-align: center;
	font-size: 1.5rem;
	background-color: rgb(241 245 249 / 1) !important;
    border-width: 0 !important;
    border-radius: 0.5rem !important;
}

#slog-otp-form {
	display: none;
}

.slog-wrap input {
    transition-duration: 200ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    background-color: rgb(255 255 255 / 0.5);
    border-color: rgb(229 231 235 / 1);
    border-width: 2px;
    border-radius: 0.75rem;
    font-family: inherit;
    line-height: inherit;
    color: inherit;
	border-style: solid;
    box-sizing: border-box;
}

.slog-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    font-size: 0.95rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.slog-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.slog-notification.error {
    background: #dc2626;
}

.slog-notification.success {
    background: #16a34a;
}