:root {
    --font-size: 16px;
    --ink: #f5f7ff;
    --muted: #9da6c4;
    --subtle: #727c9c;
    --line: rgba(174, 184, 227, .14);
    --purple: #7c68f4;
    --cyan: #79e4d0;
    --bg: #090b1d;
    --panel: #11142c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: var(--ink);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button-1 {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, #917bff, #6755e9);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.button-1:hover {
    background: linear-gradient(135deg, #8e7cff, #7c68f4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 104, 244, .28);
}

.button-2 {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line);
    background-color: #1b2040;
    border-radius: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.button-2:hover {
    background-color: #252b50;
    transform: translateY(-2px);
    border-color: rgba(121, 228, 208, .45);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

.button-3 {
    width: 10%;
    height: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    color: white;
    background-color: var(--purple);
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-3:hover {
    background-color: #8e7cff;
    transform: scale(1.03);
}

.input-1 {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(174, 184, 227, .25);
    border-radius: 11px;
    transition: 0.2s ease;
    font-size: 14px;
    color: var(--ink);
    background: #151a37;
}

.input-1:hover {
    border-color: rgba(121, 228, 208, .45);
}

.input-1:focus {
    outline: none;
    border-color: var(--purple);
    background: #1b2040;
    box-shadow: 0 0 0 4px rgba(124, 104, 244, .18);
}

.input-1::placeholder { color: var(--subtle); }

input[type="checkbox"] {
    accent-color: var(--purple);
}

.divider hr {
    border: 0;
    border-top: 1px solid var(--line);
}

.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.or-divider hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
}

.or-divider p {
    color: var(--subtle);
    font-size: 11px;
    font-weight: 700;
}

.textarea-1 {
    width: 100%;
    resize: none;
    font-size: var(--font-size);
    padding-top: 10px;
    padding-left: 10px;
    border: none;
    outline: none;
}

.circle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 5px;
    transition: 0.2s ease;
}

.circle-icon:hover {
    background: rgba(121, 228, 208, .12);
}

.circle-icon svg {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none !important;
}

.icon {
    transition: 0.1s ease;
}

.pointer {
    cursor: pointer;
}

.invert:hover {
    border-radius: 100%;
    background-color: var(--purple);
    filter: invert(100%);
}
