* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f4f4;
}

/* HEADER */
.topbar {
    background: #ec7000;
    color: white;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    background: white;
    color: #ec7000;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: bold;
}

.topbar nav a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
}

/* CONTENT */
.content {
    padding: 60px;
    align-content: center;
    text-align: center;
}

/* MODAL */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: white;
    width: 420px;
    border-radius: 8px;
    padding: 32px;
    position: relative;
    margin-top: 200px
}

.close {
    position: absolute;
    right: 16px;
    top: 16px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
}

.modal h2 {
    margin-bottom: 20px;
}

.select {
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 20px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.field input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
}

.remember {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.remember input {
    accent-color: #ec7000;
}

.btn-disabled {
    width: 100%;
    padding: 14px;
    border-radius: 24px;
    border: none;
    background: #d8d8d8;
    color: #999;
    font-size: 16px;
    cursor: not-allowed;
}

#video, #canvas {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}