<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Login CSS */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&amp;display=swap");

* {
    font-family: "Onest", sans-serif;
}

/* Reset styles to avoid conflicts */
/* .custom-login-left,
.custom-login-right,
.custom-login-card,
.custom-login-form,
.custom-login-form * {
    all: unset;
    box-sizing: border-box;
} */

/* Layout container */

[x-layouts\\.focus] {
    display: flex;
    min-height: 100vh;
    background-color: #fff;
    flex-direction: row;
}

/* Left Section */
.custom-login-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.custom-login-left .absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.4;
}

.custom-login-left .relative {
    position: relative;
    z-index: 10;
    padding: 2rem;
    width: 100%;
    max-width: 580px;
}

.custom-login-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.75rem;
    margin-bottom: 1rem;
    color: #fff;
}

.custom-login-left h2.margin-bottom-custom {
    margin-bottom: 50px;
}

.custom-login-left p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #f3f4f6;
    opacity: 0.8;
}

/* Right Section */
.custom-login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.custom-login-card {
    width: 100%;
    max-width: 32rem;
    padding: 2rem;
}

/* Form */
.custom-login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-login-form p.text-sm.mb-10 {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    text-align: center;
}

.custom-login-form a.text-black.font-semibold {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.custom-login-form a.text-black.font-semibold:hover {
    text-decoration: underline;
}

/* Input Fields */
.custom-login-form .mb-6 {
    margin-bottom: 1.5rem;
}

.custom-login-form label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4b5563;
    margin-bottom: 0.5rem;
    display: block;
}

.custom-login-form input[type="email"],
.custom-login-form input[type="password"] {
    background-color: #fff;
    border-radius: 50px;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    width: 100%;
    color: #000;
}

.custom-login-form input[type="email"]:focus,
.custom-login-form input[type="password"]:focus {
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
    border-color: #60a5fa;
    outline: none;
}

.custom-login-form .relative {
    position: relative;
}

.custom-login-form button[onclick="togglePassword()"] {
    background: none;
    border: none;
    padding: 0;
    position: absolute;
    right: 1rem;
    top: 3.3rem;
    transform: translateY(-50%);
}

/* Error Messages */
.custom-login-form .text-xs.text-red-500 {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
    display: block;
}

/* Checkbox and Forgot Password */
.custom-login-form .my-6.flex.flex-wrap.gap-2.justify-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.custom-login-form .flex.gap-2.items-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-login-form input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
    accent-color: #60a5fa;
}

.custom-login-form label[for="remember"] {
    font-size: 0.875rem;
    color: #4b5563;
    display: inline;
    margin-bottom: 0px;
}

.custom-login-form a.text-sm.text-red-500 {
    font-size: 0.875rem;
    color: #ef4444;
    text-decoration: none;
    display: inline;
}

.custom-login-form a.text-sm.text-red-500:hover {
    text-decoration: underline;
}

/* Login Button */
.custom-login-form button[type="submit"] {
    background-color: #000;
    color: #fff;
    border-radius: 9999px;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.custom-login-form button[type="submit"]:hover {
    background-color: #1f2937;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Social Login Divider */
.custom-login-form .flex.flex-col.w-full.my-6 {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1.5rem 0;
}

.custom-login-form .divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    position: relative;
}

.custom-login-form .divider::before,
.custom-login-form .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.custom-login-form .divider::before {
    margin-right: 1rem;
}

.custom-login-form .divider::after {
    margin-left: 1rem;
}

/* Social Login Buttons (Google/Apple) */
.custom-login-form .flex.items-center.justify-center.gap-2.border {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
}

.custom-login-form .flex.items-center.justify-center.gap-2.border:hover {
    background-color: #f9fafb;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-auth-btn div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.custom-auth-btn div a {
    width: 100%;
}

.custom-auth-btn div a:first-child {
    width: calc(50% - 10px);
}

.custom-auth-btn div a:nth-child(2) {
    width: 50%;
}

@media (max-width: 1367px) {
    .custom-auth-btn div a:first-child {
        width: 100%;
    }

    .custom-auth-btn div a:nth-child(2) {
        width: 100%;
    }
}
.custom-login-card p {
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    [x-layouts\\.focus] {
        flex-direction: column;
    }

    .custom-login-left,
    .custom-login-right {
        flex: none;
        width: 100%;
        padding: 1.5rem;
    }

    .custom-login-left h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    .custom-login-card {
        padding: 1.5rem;
    }
}

.login-box-text {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.login-box-text .login-head {
    font-size: 36px;
    font-weight: bold;
}

.login-box-text .login-text {
    font-size: 22px;
    letter-spacing: 4px;
}

.custom-auth-btn {
    margin-bottom: 30px;
}

.custom-button-link {
    border: 1px solid #c0dffb !important;
    color: #616161 !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    padding: 12px 15px !important;
}

.custom-button-link:hover {
    background: #c0dffb !important;
}

.custom-width {
    max-width: 15rem;
}

.custom-accordion {
    padding: 0px;
}

.custom-slot {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.docs-side-bar {
    min-width: 20rem !important;
    max-width: 20rem !important;
    border-right-width: 1px;
    padding: 8px;
}

.core-feature-icon {
    background-image: linear-gradient(180deg, #0ea5fc 0%, rgb(0, 70, 150) 100%) !important;
    filter: drop-shadow(0px 23px 33px rgba(50, 159, 231, 0.59)) !important;
    width: 76px !important;
    height: 76px !important;
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    border-radius: 50px !important;
}
</pre></body></html>