@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
/* Root Settings */
:root {
	--border-color: #E5E5E5;
}
* {
	box-sizing: border-box;
}

/* CSS Document */
HTML, BODY {
	margin: 0;	
	font-family: "Lexend Deca", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 18px;
	line-height: 1.3;
	color: #000000;
	background: #FAFAFA;
}
a {
	color: #000000;
	font-weight: bold;
	text-decoration: none;
}
strong {
	font-weight: bold;
}

.material-symbols-outlined {
	font-size: inherit;
}




body {
	background: #f5f5f5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
body .column1 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}
body .column2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}
body .column2::before {
	content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.80)), url(/images/structure/bed.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1) blur(3px);
    transform: scale(1.06);
    pointer-events: none;
}
body .column2::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.32;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='1.4'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 140px 140px;
}
body .column2 .introHolder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
body .column2 .introHolder h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: #131523;
    text-align: left;
    margin: 0 0 12px;
}
body .column2 .introHolder p.intro {
    font-size: 16px;
    line-height: 1.5;
    color: #131523;
    margin: 0;
}
body .column2 .introHolder p.quote {
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);

    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #131523;
}

body .column2 .introHolder .signalPreview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 40px 0px;
}

body .column2 .introHolder .signalCard {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 3px solid rgb(204, 204, 204);
    padding: 16px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body .column2 .introHolder .signalCard.act { border-left-color: rgb(239, 35, 60); }
body .column2 .introHolder .signalCard.review { border-left-color: rgb(255, 199, 0); }
body .column2 .introHolder .signalCard.know { border-left-color: rgb(95, 191, 139); }

body .column2 .introHolder .signalCard .signalHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

body .column2 .introHolder .signalCard .signalDate {
    width: 52px;
    height: 11px;
    border-radius: 1px;
    background: rgb(212, 212, 216);
    filter: blur(1px);
}

body .column2 .introHolder .signalCard .signalTier {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

body .column2 .introHolder .signalCard.act .signalTier { color: rgb(239, 35, 60); }
body .column2 .introHolder .signalCard.review .signalTier { color: rgb(255, 199, 0); }
body .column2 .introHolder .signalCard.know .signalTier { color: rgb(95, 191, 139); }

body .column2 .introHolder .signalCard .signalDot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

body .column2 .introHolder .signalCard .signalLines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    filter: blur(1.2px);
}

body .column2 .introHolder .signalCard .signalLine {
    width: 100%;
    height: 9px;
    border-radius: 1px;
    background: rgb(212, 212, 216);
}

body .column2 .introHolder .signalCard .signalLine.short { width: 68%; }

.registerHolder {
    width: 100%;
    max-width: 480px;
    position: relative;
}
.registerHolder .inner {
	background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow:  0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}
.registerHolder .inner img.logo {
	width: 50%;
    height: auto;
    display: block;
    margin: 0px auto 32px auto;
}
.registerHolder .inner h1 {
	font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 0px 0px 8px 0px;
}
.registerHolder .inner p.subtitle {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.registerHolder .company {
    width: 72px;
    height: auto;
    display: block;
    margin: 0px auto 0px auto;
}

form .formError {
	padding: 12px 16px 12px 16px;
	border-radius: 6px;
	font-size: 14px;
	color: #000000;
	font-family: inherit;
    border-color: #EF233C;
    background-color: #fff5f5;
    margin-bottom: 20px;
}
form .input-wrapper  {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
form .input label {
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
	color: #131523;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}
form .input label .material-symbols-outlined {
	font-size: 16px;
    color: #999999;
    transition: color 0.2s;
    vertical-align: middle;
    cursor: help;
}
form .input label .material-symbols-outlined:hover {
    color: #666666;
}
form .input input {
	width: 100%;
	padding: 12px 16px 12px 16px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #ffffff;
	font-size: 14px;
	font-family: inherit;
	color: #000000;
	cursor: text;
	transition: border-color 0.2s;
    margin-bottom: 20px;
}
form .input input:focus {
    outline: none;
    border-color: #EF233C;
}
form .input input:focus:user-valid {
    border-color: #069124;
}

form .input input:user-invalid {
    border-color: #EF233C;
    background-color: #fff5f5;
}

form input[type="submit"] {
	cursor: pointer;
	background: #EF233C;
	padding: 14px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	transition: background 0.2s;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;

    display: block;
    width: 100%;
    text-align: center;
    font-family: inherit;
}
form input[type="submit"]:hover {
	background: #d41f35;
}

p.terms {
    font-size: 12px;
    color: #666666;
    text-align: center;
    margin: 0px 0 16px 0;
}
p.terms a {
    color: #EF233C;
    text-decoration: none;
    font-weight: 400;
}
p.terms a:hover {
    text-decoration: underline;
}

p.login {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin: 20px 0 0 0;
}
p.login a {
    color: #EF233C;
    text-decoration: none;
    font-weight: 500;
}
p.login a:hover {
    text-decoration: underline;
}






/* jQuery UI Tooltip */
.ui-tooltip {
    background: #ffffff !important;
    color: #131523 !important;
    border: none !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 8px 12px !important;
    font-family: 'Lexend Deca', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    width: auto !important;
    max-width: 300px !important;
    white-space: normal !important;
    text-transform: none !important;
    position: absolute !important;
    z-index: 9999 !important;
}
.ui-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
    /* Optional subtle shadow to match the tooltip */
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.05));
}

/* Remove jQuery UI's default gradient/theme styling */
.ui-tooltip,
.ui-tooltip.ui-widget.ui-widget-content {
    background-image: none !important;
}
.ui-helper-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

@media (max-width: 900px) {
    body {
        grid-template-columns: 1fr;
    }
    body .column2 {
        display: none;
    }
}