.cohdcf-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0f172a;
}

.cohdcf-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: #0f172a;
}

.cohdcf-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 18px;
}

.cohdcf-card {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    box-shadow:
        0 22px 45px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(148, 163, 184, 0.16);
    overflow: hidden;
}

.cohdcf-card-left {
    flex: 0 0 36%;
    background: #D7EEFA;
    padding: 28px 26px;
    display: flex;
    align-items: stretch;
    justify-content: center;
	position: relative;
}

.cohdcf-snowflake {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 26px;
    height: 26px;
    display: block;
    pointer-events: none;
}

.cohdcf-snowflake svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cohdcf-card-left-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.cohdcf-left-text {
    max-width: 260px;
}

.after-logo-cohdcf-left-text {
    display: flex;
    max-width: 260px;
    flex-direction: column;
    align-items: center;
	text-align: center;
}

.cohdcf-left-title {
	color: var(--Secondary-Blue-Dark-Blue-1, #00538E);
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
    margin: 0 0 8px;
	padding-bottom: unset;
}

.after-logo-cohdcf-left-title {
	color: #000000;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	align-items: center;
	justify-content: center;
	margin: 0 0 8px;
	padding-bottom: unset;
}

.cohdcf-left-subtitle {
	color: #000;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.after-logo-cohdcf-left-subtitle {
	color: #000;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	justify-content: center;
	align-items: center;
}

.cohdcf-left-brand {
    display: flex;
    justify-content: center;
}

.cohdcf-left-image {
    display: block;
	width: 35%;
    max-width: 260px !important;
    height: auto;
}

.cohdcf-card-right {
    flex: 1;
    padding: 28px 26px 30px;
    background: #ffffff;
}

.cohdcf-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
}

.cohdcf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cohdcf-field label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cohdcf-field:focus-within label {
    color: #1d4ed8;
    text-shadow: 0 0 8px rgba(37, 99, 235, 0.22);
}

.cohdcf-field input {
    width: 100%;
    box-sizing: border-box;

    padding: 12px 14px !important;
    border-radius: 14px !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 15px !important;
    line-height: 1.4;
    background: #f8fafc;
    color: #0f172a !important;

    box-shadow:
        0 4px 8px rgba(15, 23, 42, 0.02),
        0 0 0 0 rgba(37, 99, 235, 0);

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        transform 0.12s ease;
}

.cohdcf-field input::placeholder {
    color: #94a3b8;
    font-size: 14px;
}

.cohdcf-field input:hover {
    border-color: #cbd5f5;
    background: #f9fbff;
}

.cohdcf-field input:focus {
    background: #ffffff;
    border-color: #2563eb;
    outline: none;
    transform: translateY(-1px);

    box-shadow:
        0 0 0 1px rgba(37, 99, 235, 0.65),
        0 0 16px rgba(37, 99, 235, 0.35),
        0 6px 14px rgba(15, 23, 42, 0.10);
}

.cohdcf-field input:disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

.cohdcf-btn {
    margin-top: 4px;
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(120deg, #2563eb, #1d4ed8);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
    transition:
        transform 0.14s ease,
        box-shadow 0.14s ease,
        filter 0.14s ease,
        background 0.14s ease;
}

.cohdcf-btn:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.4);
}

.cohdcf-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

.cohdcf-btn:disabled {
    background: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

.cohdcf-message {
    margin-top: 8px;
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 10px;
    display: none;
}

#cohdcf-success {
    background: #ecfdf3;
    border: 1px solid #22c55e33;
    color: #15803d;
}

#cohdcf-error {
    background: #fef2f2;
    border: 1px solid #ef444433;
    color: #b91c1c;
}

.cohdcf-field .cohdcf-help {
    font-size: 12px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .cohdcf-wrapper {
        padding: 0 14px;
        margin: 24px auto 32px;
    }

    .cohdcf-card {
        flex-direction: column;
        border-radius: 20px;
    }

    .cohdcf-card-left {
        flex: 0 0 auto;
        padding: 20px 18px;
        text-align: center;
    }

    .cohdcf-card-left-inner {
        align-items: center;
        text-align: center;
    }

    .cohdcf-left-text {
        max-width: 100%;
		text-align: left;
    }

    .cohdcf-card-right {
        padding: 20px 18px 22px;
    }

    .cohdcf-form {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .cohdcf-title {
        font-size: 20px;
    }
}
