.LoginForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ButtonPrimary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.Input {
    transition: border-color 0.15s ease, background 0.15s ease;
}

.Input:focus {
    border-color: #4A90E2;
    background: #F0F8FF;
    outline: none;
}

.CheckboxLabel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

.CheckboxLabel input[type="checkbox"] {
    width: 25px;
    height: 25px;

    accent-color: #4A90E2;
}

textarea {
    resize: vertical;
    min-height: 50px;
    max-height: 200px;
}