﻿body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    margin: 0;
    padding: 0;
    color: #222;
}

.hero {
    display: flex;
    gap: 24px;
    padding: 32px;
}

.left {
    flex: 1;
}

.right {
    width: 420px;
}

.device-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.signup-box {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.field {
    margin-bottom: 12px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.actions {
    margin-top: 8px;
}

button.primary {
    background-color: #2b9f4f;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.error {
    color: #b00020;
    margin-top: 8px;
}

/* Honeypot hidden off-screen (bots often fill visible inputs) */
.hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}
