.form {
    border-radius: 2px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 24px;
    width: 100%;
    margin-bottom: 10px;
}

.form .title {
    font-size: 16px;
    font-weight: 700;
}

.form .des {
    color: var(--muted-foreground);
    font-size: 14px;
    margin-top: 12px;
}

.form form {
    margin-top: 20px;
}

.form .column {
    display: flex;
    flex-direction: column;
    font-size: 14px
}

.form .column label {
    padding-top: 10px;
}

.form .column input {
    outline: none;
    border: 1px solid var(--input);
    border-radius: calc(var(--radius) - 5px);
    background-color: var(--background);
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    padding: 0 8px 0 12px;
    height: 32px;
}

.form .column input:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 3px oklch(0.708 0 0 / 0.5);
}

.form .column input:disabled {
    background-color: oklch(0.95 0 0);
    border-color: oklch(0.85 0 0);
    color: oklch(0.6 0 0);
    cursor: not-allowed;
    opacity: 0.7;
}


.form .column a {
    color: red;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    padding-left: 4px;
}

.form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.25rem;
    width: 100%;
    cursor: pointer;
    margin-top: 1.5rem;
}

.from button:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.form .dark {
    background-color: var(--primary);
    border-color: var(--color-ring);
    color: var(--secondary);
}


.dark:hover {
    background-color: oklch(0.35 0 0)
}

.form .light {
    background-color: var(--background);
    border: 1px solid var(--background);
    color: var(--muted-foreground);
}

.light:hover {
    color: var(--accent-foreground);
    background-color: var(--accent)
}

.form .link {
    display: flex;
    margin-top: 1.8rem;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    width: 100%;
}

.form .link a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.form .link a:hover {
    text-decoration: underline;
}