body {
    background: #0f172a;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px;
}

.box {
    width: 200px;
    height: 200px;
    background: #1e293b;
    border: 2px solid #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.highlight {
    background: #38bdf8;
    color: #0f172a;
    transform: scale(1.1);
}

#access-form {
    margin-top: 20px;
}

input {
    padding: 10px;
    background: #1e293b;
    border: 1px solid #334155;
    color: white;
}