:root {
    --color-background: #050816;
    --color-surface: #080B19;
    --color-primary: #00f5ff;
    --color-secondary: #7c3aed;
    --color-accent: #ff2e63;
    --color-text: #f8fafc;
    --color-muted: #94a3b8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 245, 255, 0.18), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 46, 99, 0.16), transparent 32%),
        linear-gradient(135deg, var(--color-background), #02030a);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

.container {
    width: min(920px, calc(100% - 32px));
    height: fit-content;
    padding: 36px;
    background: rgba(8, 11, 25, 0.88);
    border: 1px solid rgba(0, 245, 255, 0.22);
    border-radius: 26px;
    box-shadow:
        0 0 40px rgba(0, 245, 255, 0.12),
        0 0 80px rgba(124, 58, 237, 0.12);
}

h1 {
    margin: 0 0 16px;
    font-size: 42px;
    letter-spacing: -1px;
}

p {
    color: var(--color-muted);
    line-height: 1.6;
}

strong {
    color: var(--color-primary);
    letter-spacing: 2px;
    font-size: 24px;
}

hr {
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    width: 100%;
}

form {
    margin: 18px 0;
}

input {
    width: min(100%, 430px);
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(5, 8, 22, 0.85);
    color: var(--color-text);
    outline: none;
    font-size: 16px;
}

input::placeholder {
    color: var(--color-muted);
}

input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.18);
}

button {
    padding: 15px 22px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), #0bb6ff);
    color: #021014;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(0, 245, 255, 0.32);
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 34px rgba(0, 245, 255, 0.48);
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 28px;
}

li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(5, 8, 22, 0.62);
}

li form {
    margin: 0;
}

li button {
    padding: 9px 12px;
    font-size: 14px;
}

li form:last-child button {
    background: rgba(255, 46, 99, 0.12);
    color: var(--color-accent);
    border: 1px solid rgba(255, 46, 99, 0.35);
    box-shadow: none;
}

code {
    display: inline-block;
    max-width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--color-primary);
    overflow-wrap: anywhere;
}

.btn-1{
    width: 80%;
    border-radius: .25rem;
    padding: 1rem;
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-surface);
    font-size: 24px;
    font-weight: bold;
}

.home, .password{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.separator{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.open{
    display: flex;
    width: 80%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.open label{
    width: 100%;
}
.inputSmall{
    width: min(100%, 200px);
}
.task-form{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
input[type="checkbox"]{
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    cursor: pointer;
    color: var(--color-text);
}
ul > li{
    display: flex;
    justify-content: space-between;
    align-items: center;
}