:root {
    --primary-color: #A0B8DB;
    --primary-text-color: #1C2A44;
    --primary-text-color-80: rgba(28, 42, 68, 0.8);
    --primary-text-color-60: rgba(28, 42, 68, 0.6);
    --primary-text-color-40: rgba(28, 42, 68, 0.4);
}

html, body {
    height:100%;
}

body {
    margin:0;
    padding:0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    display:flex;
    flex-direction:column;
    height:100%;
    background: var(--primary-color);
}

.main-container {
    flex:1;
    display:flex;
    flex-direction:row;
    height:100vh;
}

.marketing-section {
    flex:1;
    background: var(--primary-color); 
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding: 0px 40px 40px 80px;
    color:#333;
    position: relative;
}

.marketing-section h1 {
    font-size:2.6em;
    font-weight: 500;
    font-style: normal;
    margin-bottom:10px;
    color:var(--primary-text-color);
    width: 600px;
}

.marketing-section h2 {
    font-size:1.4em;
    margin:10px 0px 10px 0px;
    font-weight:normal;
    color:var(--primary-text-color-80);
    width: 500px;
}

.marketing-section p {
    font-size:14px;
    margin-bottom:5px;
    color:var(--primary-text-color-60);
    line-height:1.4em;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    color: #fff;
    background-color: #000;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 150px;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.cta-button:active {
    background-color: #111;
    transform: translateY(0);
}

.button-container {
    margin-top: 20px;
}

.marketing-bullet {
    color: #8eef9b;
    font-weight: bold;
}

.feature-container {
    position: absolute; 
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; /* Center boxes in container */
    margin-bottom: 20px; /* Spacing from bottom if needed */
}

.feature-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
               0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    width: 220px;
    text-align: left;
}

.feature-box h4 {
    margin-top: 15px !important;
}

.feature-box i {
    margin-top: 15px !important;
}

.feature-box-center {
    margin: 0 30px;
}

.signin-section {
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--primary-color); 
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    margin: 7px;
}

.signin-box {
    width:300px;
    padding:20px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    border-radius:12px;
    text-align:center;
    background:#F8F9FB;
}

.signin-box h1 {
    font-size:1.5em;
    margin-bottom:5px;
    font-weight:normal;
    color:var(--primary-text-color-80);
}

.input-field {
    margin-bottom:15px;
    display:flex;
    align-items:center;
    border:1px solid #ccc;
    border-radius:4px;
    padding:0 10px;
    background:#fafafa;
}

.input-field-highlighted {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3),
               0 0 8px rgba(0, 191, 255, 0.6);
    transition: box-shadow 0.3s ease;
}

.input-field input {
    border:none;
    outline:none;
    width:100%;
    background:transparent;
    font-size:14px;
    padding:10px 5px;
    color:#333;
}

.input-company {
    margin-left: 5px;
}

.signin-button {
    margin-top:15px;
    width:100%;
    padding:10px;
    background: var(--primary-color); 
    border:none;
    border-radius:4px;
    font-size:14px;
    color:#000;
    cursor:pointer;
}

.forgot-link {
    margin-top:10px;
    display:inline-block;
    font-size:12px;
    color:var(--primary-text-color-60);
    text-decoration:none;
}

.create-subhead {
    font-size:11px;
    color:var(--primary-text-color-60);
    margin-bottom:25px;
    text-decoration:none;
    display:inline-block;
}

.name-fields {
    display: flex;
    gap: 10px; /* Adjust gap as needed */
}

.input-field.half-width {
    width: 50%;
}

.dropdown-create {
    width: 100%;
    padding: 10px 10px;
    border: none;
    font-size: 14px;
    color: var(--primary-text-color-60);
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path fill="%23999" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 18px;
    transition: border-color 0.2s;
}

.dropdown-create:focus {
    outline: none;
}

/* Footer now inside the signin-section */
.footer {
    text-align:center;
    font-size:12px;
    margin-top:20px;
}

.footer a {
    color:var(--primary-text-color-80);
    text-decoration:none;
    margin:0 10px;
}

.menu-container {
    display: none;
    position:absolute;
    top:10px;
    right:10px;
    font-size:20px;
    cursor:pointer;
    user-select:none;
    padding-right:20px;
}

.menu-container span {
    display:block;
    width:20px;
    height:2px;
    background:var(--primary-text-color-60);
    margin:5px 0;
    transition:0.3s;
}

.dropdown {
    display:none;
    position:absolute;
    top:30px;
    right:20px;
    background:#fff;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    border-radius:4px;
    font-size:14px;
    text-align:left;
    min-width: 100px; 
}

.dropdown a {
    display:block;
    padding:10px;
    text-decoration:none;
    color:#333;
}

.dropdown a:hover {
    background:#f0f0f0;
}

.menu-container.open + .dropdown {
    display:block;
    right: 20px;
}

.icon {
    width:16px;
    height:16px;
    margin-right:8px;
    flex-shrink:0;
    fill:#999;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 10px;
    display: none; /* Initially hidden */
}

a.branded-link {
    color: #9c7a9c;
    text-decoration: underline;
    font-weight: bold;
}

.signin-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Remove left marketing section on mobile */
@media (max-width: 844px) {
    .marketing-section {
        display: none;
    }

    .signin-section {
        width: 100%;
        padding: 20px;
    }

    .signin-box {
        width: 100%;
        max-width: 300px;
    }
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.separator span {
    padding: 0 10px;
    color: #666;
    font-size: 12px;
}

.google-signin-button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s;
}

.google-signin-button:hover {
    background-color: #f5f5f5;
}

.google-signin-button img {
    width: 18px;
    height: 18px;
}

.login_toggle {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
}

.login_toggle a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 1px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.login_toggle a:hover {
    color: #333;
    text-decoration: underline;
}