@import url("https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap");
body {
    font-family: "Rethink Sans", sans-serif !important;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.animate-blink {
    animation: blink 0.7s infinite;
}

.typewriter {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.2;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #3b82f6;
    margin-left: 0;
    vertical-align: bottom;
}

#dynamic-text {
    color: #3b82f6;
}

.left-panel-d {
    flex: 0 0 50%;
}

.right-panel-d {
    flex: 0 0 50%;
    min-height: 100vh;
    /* background-color: #4169df; */
    background-image: url("/assets/images/auth/bg-auth.jpg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .right-panel-d {
        flex: 0 0 100%;
        min-height: 100vh;
    }
}
.g-recaptcha {
    filter: invert(1) hue-rotate(180deg) !important;
}

.grecaptcha-badge {
    z-index: 99999999 !important;
}

.left-panel {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.dynamic-word {
    color: #3b82f6;
    border-right: 2px solid #3b82f6;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%,
    50% {
        border-color: #3b82f6;
    }

    51%,
    100% {
        border-color: transparent;
    }
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modern-input {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.modern-input:focus {
    outline: none;
    border: 2px solid #3b82f6;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.modern-btn {
    background: #3b82f6 !important;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    font-size: 14px;
}

.modern-btn:hover {
    background: #4169df;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    color: #ffffff;
}
.d-cards-auth i {
    font-size: 30px;
    color: #4169df;
}
.auth-m-h h3 {
    font-size: 40px;
    line-height: 1.4;
}
.auth-m-h p {
    font-size: 16px;
}
.bg-scribble{
    background-image: url(/assets/images/auth/2.png);
    padding-left: 35px;
}
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
}

/* add the dot after every li except the last one */
.link-list li:not(:last-child)::after {
    content: "•";
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    color: #9aa0a6;
    font-size: 0.9em;
    line-height: 1;
}

/* link styling */
.link-list li {
    color: #4169df;
    padding: 0.125rem 0;
}
.btn-d-google{
border: 1px solid rgba(209, 213, 219, 0.8) !important;
padding: 7px;
color: #000000;
}
.btn-d-google:hover{
border: 2px solid #4169df !important;
padding: 7px;
color: #4169df !important;
}